标签: flutter validation null
我正在尝试在应用程序中实现注册活动并使用 textFields。 我的验证器在行中抛出“用于空值的空检查运算符”:String error = widget.validateFunction(val)!;
String error = widget.validateFunction(val)!;
如果我删除“!”它给了我错误:A value of type 'String?' can't be assigned to a variable of type 'String'. 我该如何解决?谢谢!
A value of type 'String?' can't be assigned to a variable of type 'String'.