storageSizeInBytes method

Future<int> storageSizeInBytes()

Returns the size of the disk cache.

Implementation

Future<int> storageSizeInBytes() async {
  await _storageInit();
  return _storageCache.size;
}