readUint32 method
Implementation
int readUint32() {
final value = _byteData.getUint32(_offset, binaryProtocolLittleEndian);
_offset += 4;
return value;
}
int readUint32() {
final value = _byteData.getUint32(_offset, binaryProtocolLittleEndian);
_offset += 4;
return value;
}