getCachedFilePath static method
Get cached file path
Implementation
static String? getCachedFilePath(String key) {
_ensureInitialized();
final cachedFile = File('${_cacheDir!.path}/$key');
return cachedFile.existsSync() ? cachedFile.path : null;
}