redirect_generative_to_missing_constructor
The constructor '{0}' couldn't be found in '{1}'.
Description
#The analyzer produces this diagnostic when a generative constructor redirects to a constructor that isn't defined.
Example
#The following code produces this diagnostic because the constructor C.a
redirects to the constructor C.b
, but C.b
isn't defined:
dart
class C {
C.a() : this.b();
}
Common fixes
#If the missing constructor must be called, then define it:
dart
class C {
C.a() : this.b();
C.b();
}
If the missing constructor doesn't need to be called, then remove the redirect:
dart
class C {
C.a();
}
Was this page's content helpful?
Thank you for your feedback!
Provide details Thank you for your feedback! Please let us know what we can do to improve.
Provide details Unless stated otherwise, the documentation on this site reflects Dart 3.8.1. Page last updated on 2025-05-08. View source or report an issue.