extractUint16 method

int extractUint16()

Implementation

int extractUint16() {
  final extractedValue = data.getUint16(_offset, Endian.little);
  _offset += 2;
  return extractedValue;
}