allRawBytes method

Uint8List allRawBytes()

Returns a copy of all the bytes in the range.

The returned bytes can be modified without affecting the bytes in the binary range.

Unlike the extract methods, the binary range is not changed by this operation.

Implementation

Uint8List allRawBytes() => _bytes.sublist(_begin, _end);