Compact the internal bytes capacity to length.
@override bool compact() { if (_length < _bytes.length) { _bytes = _bytes.sublist(0, _length); bytesData = ByteDataIntCodec(_bytes.asByteData()); return true; } return false; }