pullUint32 method

int pullUint32()

Implementation

int pullUint32() {
  final v = _byteData.getUint32(_readOffset);
  _readOffset += 4;
  return v;
}