getCacheFile static method

File getCacheFile()

Implementation

static File getCacheFile() {
  final home = Platform.isWindows
      ? Platform.environment['USERPROFILE']
      : Platform.environment['HOME'];
  final dirPath = p.join(home ?? Directory.systemTemp.path, '.zuq');
  return File(p.join(dirPath, 'update_cache.json'));
}