writeUint16 method

void writeUint16(
  1. int value
)

Implementation

void writeUint16(int value) {
  writeBits(16, value);
}