Uint8List readBytes(int length) { _checkRemaining(length); final bytes = Uint8List.fromList(_bytes.sublist(_offset, _offset + length)); _offset += length; return bytes; }