temporaryPath method

Future<String> temporaryPath()

临时文件夹的路径

Implementation

Future<String> temporaryPath() async {
  final dir = await getTemporaryDirectory();
  return dir.path;
}