enable_null_safety
Do use sound null safety.
Details
#NOTE: This rule is removed in Dart 3.0.0; it is no longer functional.
DO use sound null safety, by not specifying a dart version lower than 2.12
.
BAD:
dart
// @dart=2.8
a() {
}
GOOD:
dart
b() {
}
Enable
#To enable the enable_null_safety
rule, add enable_null_safety
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- enable_null_safety
If you're instead using the YAML map syntax to configure linter rules, add enable_null_safety: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
enable_null_safety: true
Was this page's content helpful?
Thank you for your feedback!
Provide details Thank you for your feedback! Please let us know what we can do to improve.
Provide details Unless stated otherwise, the documentation on this site reflects Dart 3.8.1. Page last updated on 2025-03-07. View source or report an issue.