在 flutter 中用于空值创建路径的空检查运算符

Null check operator used on a null value creating path in flutter

当我为配置单元数据库创建路径时显示错误。 “用于空值的空检查运算符”

void main() async{
  Directory appDocDir = await getApplicationDocumentsDirectory();


  runApp(const EntryWidget());
}

您应该等待小部件初始化,因为它必须在此之前进行搜索并在库中的某处获取空值。尝试在 await 命令之前使用下面的代码行。

   WidgetsFlutterBinding.ensureInitialized();
   Directory appDir = await getApplicationDocumentsDirectory();