totalBytes method

  1. @override
Future<int> totalBytes(
  1. String appId
)
override

Implementation

@override
Future<int> totalBytes(String appId) async {
  return (await entries(
    appId,
  )).fold<int>(0, (total, entry) => total + entry.sizeBytes);
}