标签: flutter dart
我想将异步函数编写为没有Future.then和await的同步函数,
Future.then
await
像Flutter File的Delete API
new File(path).deleteSync();
但是我不知道怎么写。
谢谢。