readBytes method

Uint8List readBytes(
  1. int number
)

Implementation

Uint8List readBytes(int number) {
  checkBytesAvailable(number);
  Uint8List d = _data.sublist(_current, _current + number);
  _current += number;
  return d;
}