tempNewFileAsync property

Future<String> get tempNewFileAsync

异步获取新的临时文件路径

Returns 一个 Future 对象,表示异步操作的结果,返回新的临时文件路径。

Implementation

static Future<String> get tempNewFileAsync async {
  await setup();
  return tempNewFile;
}