writeUInt32LE method

Bw writeUInt32LE(
  1. int n
)

Implementation

Bw writeUInt32LE(int n) {
  var buf = Uint8List(4);
  var view = ByteData.view(buf.buffer);
  view.setUint32(0, n, Endian.little);
  this.write(buf);
  return this;
}