getUint16 method
Reads a Uint16 from the buffer.
Implementation
int getUint16() {
final int value = data.getUint16(_position, Endian.host);
_position += 2;
return value;
}
Reads a Uint16 from the buffer.
int getUint16() {
final int value = data.getUint16(_position, Endian.host);
_position += 2;
return value;
}