readUInt32 method
Reads a uint32 from the backing buffer
Implementation
int readUInt32() {
final res = _data.getUint32(_offset);
_offset += uint32Size;
return res;
}
Reads a uint32 from the backing buffer
int readUInt32() {
final res = _data.getUint32(_offset);
_offset += uint32Size;
return res;
}