blob: 8ebe2e2fa5191f4f1dcbdcdf675879972b1bfe03 [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() {
print('hello');
}