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
Unless stated otherwise, the documentation on this site reflects Dart 3.6.2. Page last updated on 2025-01-27. View source or report an issue.