blob: 69bb0aefa4f2c23123ea59c62324cee186708388 [file] [log] [blame]
class NumProperty extends DiagnosticsProperty {
NumProperty({super.showName});
NumProperty.lazy({super.showName}) : super.lazy();
}
class DiagnosticsProperty extends DiagnosticsNode {
DiagnosticsProperty({super.showName});
DiagnosticsProperty.lazy({super.showName});
}
abstract class DiagnosticsNode {
DiagnosticsNode({this.showName = true});
final bool showName;
}
void main() {}