我现在多次询问这个问题,但是我想检查在运行时是否存在资产而没有异步。那有可能吗?
感谢答案
答案 0 :(得分:1)
如果在stateFulWidget的init()方法中访问文件时遇到错误(应该得到错误),请这样做
init(){ //this should be non aynchronous and is
yourAsyncFileAccessMethod();
}
yourAsyncFileAccessMethod() async { //this can be aynchronous
await //access and process file here
}