String c = a ?? b;
Warning: Operand of null-aware operation '??' has type 'String' which excludes null.
chapter3/operator_conditional.dart:17
String c = a ?? b;
我这里使用这String c = a?? b; 出现了警告,这是为什么啊?!
Warning: Operand of null-aware operation '??' has type 'String' which excludes null.
chapter3/operator_conditional.dart:17
String c = a ?? b;
我这里使用这String c = a?? b; 出现了警告,这是为什么啊?!
2021-11-24
举报