readUint8 method

int readUint8()

Implementation

int readUint8() {
  _reserveBytes(1);
  _offset += 1;
  return _byteData.getUint8(_offset - 1);
}