writeUint24 method Null safety

void writeUint24(
  1. int value
)

Implementation

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