writeUint24 method

void writeUint24(
  1. int value
)

Implementation

void writeUint24(int value) {
  writeBits(24, value);
}