total property
The total number of bytes expected across all tracked items. This sum only includes items where the total size is known.
Implementation
int get total => _items.fold(0, (sum, item) => sum + item.total);
The total number of bytes expected across all tracked items. This sum only includes items where the total size is known.
int get total => _items.fold(0, (sum, item) => sum + item.total);