totalBytes property
int
get
totalBytes
Total bytes for the binary data stored in the cache.
This does not include header data or overhead from the backing datastore.
Implementation
int get totalBytes {
int count = 0;
for (PackedData data in _data.values) {
count += data.data.length;
}
return count;
}