Reads an Uint8List of length.
length
@override Uint8List readBytes(int length) { checkCanRead(length); final pos = _position; var bs = _bytes.sublist(pos, pos + length); incrementPosition(length); return bs; }