getUint32 method

int getUint32()

Implementation

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