readUint8 method

int readUint8()

Implementation

int readUint8() {
  assert(offset + 1 <= byteLength);
  return buf.getUint8(offset++);
}