estimatedSizeByCategory property
Get estimated size by category.
Implementation
static Map<String, int> get estimatedSizeByCategory =>
components.map((key, value) =>
MapEntry(key, value.fold(0, (sum, c) => sum + c.estimatedSizeBytes)));