putInt32List method
- Int32List list
Write all the values from an Int32List into the buffer.
Implementation
void putInt32List(Int32List list) {
assert(!_isDone);
_alignTo(4);
_append(list.buffer.asUint8List(list.offsetInBytes, 4 * list.length));
}