readInt8 method

int readInt8()

Implementation

int readInt8() {
  int value = buffer.getInt8(readIndex);
  readIndex += 1;
  return value;
}