unnecessary_null_in_if_null_operators
Unnecessary use of '??' with 'null'.
Description
#
The analyzer produces this diagnostic when the right operand of the ??
operator is the literal null.
Example
#
The following code produces this diagnostic because the right-hand operand
of the ?? operator is null:
dart
String? f(String? s) => s ?? null;
Common fixes
#If a non-null value should be used for the right-hand operand, then change the right-hand side:
dart
String f(String? s) => s ?? '';
If there is no non-null value to use for the right-hand operand, then remove the operator and the right-hand operand:
dart
String? f(String? s) => s;