getUint32 method
Reads a Uint32 from the buffer.
Implementation
int getUint32() {
final int value = data.getUint32(_position, Endian.host);
_position += 4;
return value;
}
Reads a Uint32 from the buffer.
int getUint32() {
final int value = data.getUint32(_position, Endian.host);
_position += 4;
return value;
}