prefer_conditional_assignment
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:
dart
int f(String? s) {
if (s == null) {
s = '';
}
return s.length;
}
Common fixes
#Use the ??=
operator instead of an explicit if
statement:
dart
int f(String? s) {
s ??= '';
return s.length;
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。