如何在 flutter 中处理 File 的空安全?

How to handle null safety for File in flutter?

我正在使用 Firebase,我有这样的 submitForm 方法:


// File variable declaration
File? _userImageFile; 

void _submitForm() {
    try {
      final isVaild = _formKey.currentState!.validate();

      // To close soft keyboard
      FocusScope.of(context).unfocus();

      if (_userImageFile == null && !_isLogIn) {
        ScaffoldMessenger.of(context).showSnackBar(
          SnackBar(
            content: Text('Please pick an image'),
            backgroundColor: Colors.black,
          ),
        );
        return;
      }

      if (isVaild) {
        _formKey.currentState!.save();
        widget._submitAuthForm(
          _userName.trim(),
          _userImageFile!,
          _userEmail.trim(),
          _userPassword.trim(),
          _isLogIn,
        );
      }
    } catch (e) {
      print(e.toString());
    }
  }

我已经使用相同的表单处理了注册和登录,所以当我登录时,_userImageFile 的值将为空,因此它给出了异常:Null check operator used on a null value

在这里我无法弄清楚如何在 flutter 中处理这个问题?

花了几个小时我得到了一些解决方案,我希望这对其他人也有帮助:

  1. 通过编辑 pubspec.yml sdk: ">=2.3.0 <3.0.0"
  2. 删除空安全
  3. 为登录和注册创建 2 个不同的函数而不是单个 SubmitForm()
  4. 正如@ZeeshanAhmad 建议的那样File? _userImageFile = File('');