readUint32 method
Fetch a uint32 from the bytes list
Implementation
int readUint32() {
final start = ip;
ip += 4;
return bytes.buffer.asByteData().getUint32(start);
}
Fetch a uint32 from the bytes list
int readUint32() {
final start = ip;
ip += 4;
return bytes.buffer.asByteData().getUint32(start);
}