getCachedImage static method

File? getCachedImage(
  1. String key
)

Get cached image

Implementation

static File? getCachedImage(String key) {
  _ensureInitialized();

  final cachedFile = File('${_cacheDir!.path}/$key');
  return cachedFile.existsSync() ? cachedFile : null;
}