readUInt32 method
Implementation
int readUInt32() {
ByteData? data = read(4);
if(data == null){
throw 'no more data';
}
return data.getUint32(0, Endian.little);
}
int readUInt32() {
ByteData? data = read(4);
if(data == null){
throw 'no more data';
}
return data.getUint32(0, Endian.little);
}