pullUint8 method

int pullUint8()

Implementation

int pullUint8() {
  final v = _byteData.getUint8(_readOffset);
  _readOffset += 1;
  return v;
}