writeShort method
Writes a 16-bit integer to the byte stream.
Implementation
void writeShort(int value) {
_validateBuffer(2);
_getData().setInt16(_position, value, endian);
_position += 2;
}
Writes a 16-bit integer to the byte stream.
void writeShort(int value) {
_validateBuffer(2);
_getData().setInt16(_position, value, endian);
_position += 2;
}