total property

int get total

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);