Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在此处输入图像描述
我是新来的颤振并尝试使用扩展运算符和 Map into a List 但我得到空安全错误,尝试使用(!)但没有好处。
虽然不太明白你在说什么,但大致明白你的代码哪里错了。
这是示例代码:
改变 _snapshot.data!.name 至 _snapshot.data?.name ?? "Unknown"
改变
_snapshot.data!.name
至
_snapshot.data?.name ?? "Unknown"