writeUint32 method

void writeUint32(
  1. int value
)

Implementation

void writeUint32(int value) {
  writeBits(32, value);
}