parseUShort method

dynamic parseUShort()

Implementation

parseUShort() {
  // int _offset = this.offset + this.relativeOffset;
  var v = this.data.getUint16(this.offset + this.relativeOffset);

  // if(_offset > 10048176) {
  //   print(" v: ${v} offset: ${this.offset} relativeOffset: ${this.relativeOffset}  ");
  // }

  this.relativeOffset += 2;
  return v;
}