getUint32 method

int getUint32 ()

Reads a Uint32 from the buffer.

Implementation

int getUint32() {
  final int value = data.getUint32(_position, Endian.host);
  _position += 4;
  return value;
}