readUint16 method

int readUint16()

Implementation

int readUint16() {
  var v = _byteData!.getUint16(offset);
  offset += 2;
  return v;
}