non_ const_ generative_ enum_ constructor
Details about the 'non_const_generative_enum_constructor' diagnostic produced by the Dart analyzer.
Generative enum constructors must be 'const'.
Description
#
The analyzer produces this diagnostic when an enum declaration
contains a generative constructor that isn't marked as
const.
Example
#
The following code produces this diagnostic because the
constructor in E isn't marked as being
const:
enum E {
e;
E();
}
Common fixes
#
Add the const keyword before the constructor:
enum E {
e;
const E();
}
除非另有说明,文档之所提及适用于 Dart 3.12.2 版本报告页面问题.