writeUint32 method

void writeUint32(
  1. int x
)

Writes a Uint32 to the buffer.

Implementation

void writeUint32(int x) {
  writeUint24(x);
  writeUint8(x >> 24);
}