usedInBytes property

int get usedInBytes

Bytes consumed by geometry data and alignment padding.

Implementation

int get usedInBytes =>
    _blocks.fold(0, (total, block) => total + block.usedInBytes);