Reads bytes (Uint8List) of length at offset.
length
offset
Uint8List readBytes([int offset = 0, int? length]) { length ??= this.length - offset; var bs = sublist(offset, offset + length); return bs; }