readUint8 method

int readUint8()

Implementation

int readUint8() {
  int value = buffer.getUint8(readIndex);
  readIndex += 1;
  return value;
}