readU8 method

int readU8()

Implementation

int readU8() {
  final value = buf.getUint8(offset);
  offset += 1;

  return value;
}