此问题已在此处有答案:
Null check doesn't cause type promotion in Dart(3个答案)
2天前关闭。
我该怎么解决?更改了变量,它仍然显示错误。和以前一样,在getimage上有一条线,我该如何更改它?参数类型“File?'不能分配给参数类型' File '。enter image description here
希望你们能帮我解决这个问题。谢谢。
此问题已在此处有答案:
Null check doesn't cause type promotion in Dart(3个答案)
2天前关闭。
我该怎么解决?更改了变量,它仍然显示错误。和以前一样,在getimage上有一条线,我该如何更改它?参数类型“File?'不能分配给参数类型' File '。enter image description here
希望你们能帮我解决这个问题。谢谢。
1条答案
按热度按时间7z5jn7bk1#
Image.file(file)
被标记为错误,因为文件可为空,并且很可能是File?
类型。您已经处理了null情况,因此Image.file(file!)
是非null情况并修复了您的问题。