pullUint16 method

int pullUint16()

Implementation

int pullUint16() {
  final v = _byteData.getUint16(_readOffset);
  _readOffset += 2;
  return v;
}