prefer_conditional_assignment
Details about the 'prefer_conditional_assignment' diagnostic produced by the Dart analyzer.
The 'if' statement could be replaced by a null-aware assignment.
Description
#
The analyzer produces this diagnostic when an assignment to a variable is
conditional based on whether the variable has the value null and the
??= operator could be used instead.
Example
#
The following code produces this diagnostic because the parameter s is
being compared to null in order to determine whether to assign a
different value:
int f(String? s) {
if (s == null) {
s = '';
}
return s.length;
}
Common fixes
#Use the ??= operator instead of an explicit if statement:
int f(String? s) {
s ??= '';
return s.length;
}
除非另有说明,文档之所提及适用于 Dart 3.10.3 版本报告页面问题.