readInt32Le method
Reads a little-endian i32 from the current offset without allocating.
Implementation
int readInt32Le() {
final value = _byteData.getInt32(_offset, binaryProtocolLittleEndian);
_offset += 4;
return value;
}
Reads a little-endian i32 from the current offset without allocating.
int readInt32Le() {
final value = _byteData.getInt32(_offset, binaryProtocolLittleEndian);
_offset += 4;
return value;
}