setArray method

NativeFloat64Array setArray(
  1. Float64Array newList, [
  2. int index = 0
])

Implementation

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