Pattern: Missing use of sound null safety
Issue: -
DO use sound null safety, by not specifying a dart version lower than 2.12
.
Example of incorrect code:
// @dart=2.8
a() {
}
Example of correct code:
b() {
}
Pattern: Missing use of sound null safety
Issue: -
DO use sound null safety, by not specifying a dart version lower than 2.12
.
Example of incorrect code:
// @dart=2.8
a() {
}
Example of correct code:
b() {
}