writeUint16 method
Write a 16-bit word to the end of the buffer.
Implementation
@override
void writeUint16(int value) {
if (byteOrder == BIG_ENDIAN) {
writeByte((value >> 8) & 0xff);
writeByte((value) & 0xff);
return;
}
writeByte((value) & 0xff);
writeByte((value >> 8) & 0xff);
}