Uint8List readBytes(int length) { final bytes = Uint8List.sublistView(_data, _offset, _offset + length); _offset += length; return bytes; }