cacheGetFile static method

Future<File?> cacheGetFile(
  1. String url, {
  2. String? cacheKey,
  3. String? cacheTag,
})

取缓存文件

Implementation

static Future<File?> cacheGetFile(String url,
    {String? cacheKey, String? cacheTag}) async {
  return await hwCacheGetFile(url,
      cacheKey: keyToTagMd5(url, cacheKey, cacheTag));
}