int16 property

int int16

Returns a 16-bit integer, read from the buffer

Implementation

int get int16 {
  int result = _byteData.getInt16(_readPos, Endian.little);
  _readPos += 2;
  return result;
}