=2.12.0 file; 最佳答案 这是第一个; (_formKey.currentState!.validate(-6ren">
gpt4 book ai didi

_formKey.currentState.validate() 上的 Flutter/Dart Null 安全性?

转载 作者:行者123 更新时间:2023-12-05 04:49:25 31 4
gpt4 key购买 nike

我刚刚在 pubspec.yaml 中更新了我的最小 sdk;

 sdk: ">=2.12.0 <3.0.0" 

现在我必须通过声明 ?在所有字符串和整数上。

但是我应该用 formkey 做什么呢?

 if (_formKey.currentState.validate())

这是 Android Studio 告诉我的内容,但我不确定将 ? 放在哪里

The method 'validate' can't be unconditionally invoked because the receiver can be 'null'.  Try making the call conditional (using '?.') or adding a null check to the target ('!').

知道我应该如何将此行转换为空安全吗?

那这个呢?

 Future<File> file;

最佳答案

这是第一个;

(_formKey.currentState!.validate())

还有下一个;

 late Future<File> file;

关于_formKey.currentState.validate() 上的 Flutter/Dart Null 安全性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67592350/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com