cacheFile static method

File cacheFile({
  1. String? file,
  2. String? ext,
  3. String? dir,
})

for cache

Implementation

static File cacheFile({String? file, String? ext, String? dir}) {
  return makeFile(dirCache, file: file, ext: ext, dir: dir);
}