loadCache method

Future<String> loadCache()

加载缓存

Implementation

Future<String> loadCache() async {
  Directory tempDir = await getTemporaryDirectory();
  int value = await _getTotalSizeOfFilesInDir(tempDir);
  return cacheSize.value = value.formatBytes();
}