setArray method

NativeFloat32Array setArray(
  1. Float32Array newList, [
  2. int index = 0
])

Implementation

NativeFloat32Array setArray(Float32Array newList, [int index = 0]) {
  toDartList().setAll(index, newList.toDartList());
  return this;
}