getCacheDirectory method

Future<String> getCacheDirectory()

Get the cache directory

Implementation

Future<String> getCacheDirectory() async {
  _ensureInitialized();
  return path.join(_baseDirectory!.path, 'Cache');
}