super_in_enum_constructor
The enum constructor can't have a 'super' initializer.
Description
#The analyzer produces this diagnostic when the initializer list in a constructor in an enum contains an invocation of a super constructor.
Example
#The following code produces this diagnostic because the constructor in the enum E
has a super constructor invocation in the initializer list:
dart
enum E {
e;
const E() : super();
}
Common fixes
#Remove the super constructor invocation:
dart
enum E {
e;
const E();
}
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.