tempPathAsync property

Future<String> get tempPathAsync

异步获取临时文件路径

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

Implementation

static Future<String> get tempPathAsync async {
  await setup();
  return tempPath;
}