readUint8 method

int readUint8(
  1. int offset
)

Reads a part of the buffer starting at offset as an Uint8 value.

Implementation

int readUint8(int offset) {
  return readFromBufferAsUnsigned(this, offset, 1);
}