getUInt32 method

int getUInt32([
  1. Endian endian = Endian.little
])

Returns the positive integer represented by the four bytes Increments the offset value by four The return value will be between 0 and 232 - 1, inclusive.

Implementation

int getUInt32([Endian endian = Endian.little]) {
  final result = buffer.getUint32(offset, endian);
  offset += 4;
  return result;
}