方法 'map' 不能无条件调用,因为接收者可以是 'null'
The method 'map' can't be unconditionally invoked because the receiver can be 'null'
enter image description here
即使我将 .toList() 添加到地图,地图也有错误
此错误表明 map((note) => Text(note.title)) 可能为空。
如果您确定笔记中始终有项目,请使用“!”告诉编译器它不会为空:
final children = notes.map((note) => Text(note.title))!.toList();
enter image description here
即使我将 .toList() 添加到地图,地图也有错误
此错误表明 map((note) => Text(note.title)) 可能为空。
如果您确定笔记中始终有项目,请使用“!”告诉编译器它不会为空:
final children = notes.map((note) => Text(note.title))!.toList();