-
-
Notifications
You must be signed in to change notification settings - Fork 81
Open
Description
I think these 2 errors contradict each other
lint: ^1.6.0
abstract class IContent {
final String? name;
IContent({
this.name,
});
}
class Content extends IContent {
// 2 conflicting errors
// Annotate overridden members.dart(annotate_overrides)
// Don't override fields.dart(overridden_fields)
final String? name;
}
Metadata
Metadata
Assignees
Labels
No labels