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