readInt8 method

int readInt8()

Implementation

int readInt8() {
  _reserveBytes(1);
  _offset += 1;
  return _byteData.getInt8(_offset - 1);
}