getCachePath static method

Future<Directory> getCachePath()

Get the cache directory path.

Implementation

static Future<Directory> getCachePath() async {
  final path = await channel.invokeMethod('getCachePath');
  return Directory(path);
}