getTemporaryPath method

Future<String> getTemporaryPath()

Implementation

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