readInt16 method

int readInt16()

Implementation

int readInt16() {
  _reserveBytes(2);
  _offset += 2;
  return _byteData.getInt16(_offset - 2);
}