packUint32 method

void packUint32(
  1. int v
)

Implementation

void packUint32(int v) {
  if (_buf.length - _offset < 5) _nextBuf();
  _dat.setUint32(_offset, v, Endian.little);
  _offset += 4;
}