getCacheSizeFormatted static method

Future<String> getCacheSizeFormatted()

Get cache size as human readable string

Implementation

static Future<String> getCacheSizeFormatted() async {
  final size = await getCacheSize();
  return _formatBytes(size);
}