getCachedFilePath static method

String? getCachedFilePath(
  1. String key
)

Get cached file path

Implementation

static String? getCachedFilePath(String key) {
  _ensureInitialized();

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