readInt16 method
Returns a 16-bit integer, read from the buffer
Implementation
int readInt16() {
var result = _data.getInt16(_readPos, Endian.little);
_readPos += 2;
return result;
}
Returns a 16-bit integer, read from the buffer
int readInt16() {
var result = _data.getInt16(_readPos, Endian.little);
_readPos += 2;
return result;
}