extractUint32 method

int extractUint32()

Implementation

int extractUint32() {
  final extractedValue = data.getUint32(_offset, Endian.little);
  _offset += 4;
  return extractedValue;
}