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