unnecessary_null_checks
Unnecessary null
checks.
Details
#DON'T apply a null
check where a nullable value is accepted.
BAD:
dart
f(int? i) {}
m() {
int? j;
f(j!);
}
GOOD:
dart
f(int? i) {}
m() {
int? j;
f(j);
}
Enable
#To enable the unnecessary_null_checks
rule, add unnecessary_null_checks
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- unnecessary_null_checks
If you're instead using the YAML map syntax to configure linter rules, add unnecessary_null_checks: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
unnecessary_null_checks: 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.