Generates a full file path inside the application cache directory.
static Future<String> getCacheFilePath(String fileName) async { final cache = await cachePath; return join(cache, fileName); }