putUint32 method

void putUint32 (int value)

Write a Uint32 into the buffer.

Implementation

void putUint32(int value) {
  _eightBytes.setUint32(0, value, Endian.host);
  _buffer.addAll(_eightBytesAsList, 0, 4);
}