Group: style
Maturity: stable
Dart SDK: >= 2.12.0 • (Linter v0.1.120)
Since info is static, may be staleDON'T use null check on a potentially nullable type parameter.
Given a generic type parameter T
which has a nullable bound (e.g. the default
bound of Object?
), it is very easy to introduce erroneous null checks when
working with a variable of type T?
. Specifically, it is not uncommon to have
T? x;
and want to assert that x
has been set to a valid value of type T
.
A common mistake is to do so using x!
. This is almost always incorrect, since
if T
is a nullable type, x
may validly hold null
as a value of type T
.
BAD:
T run<T>(T callback()) {
T? result;
(() { result = callback(); })();
return result!;
}
GOOD:
T run<T>(T callback()) {
T? result;
(() { result = callback(); })();
return result as T;
}
To enable the null_check_on_nullable_type_parameter
lint,
add null_check_on_nullable_type_parameter
under linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- null_check_on_nullable_type_parameter