readUint16 method
Implementation
int readUint16() {
final value = _byteData.getUint16(_offset, binaryProtocolLittleEndian);
_offset += 2;
return value;
}
int readUint16() {
final value = _byteData.getUint16(_offset, binaryProtocolLittleEndian);
_offset += 2;
return value;
}