read8 method

int read8()

Read U8 value from the buffer and shift cursor by 1.

Implementation

int read8() {
  final value = _dataView.getUint8(_bytePosition);
  shift(1);
  return value;
}