readUint8 method

int readUint8()

Fetch a uint8 from the bytes list

Implementation

int readUint8() {
  final start = ip;
  ip += 1;
  return bytes.buffer.asByteData().getUint8(start);
}