getCacheFilePath static method

Future<String> getCacheFilePath(
  1. String fileName
)

Generates a full file path inside the application cache directory.

Implementation

static Future<String> getCacheFilePath(String fileName) async {
  final cache = await cachePath;
  return join(cache, fileName);
}