set method
Implementation
NativeArray set(List<T> newList, [int index = 0]) {
toDartList().setAll(index, newList.sublist(0, math.min(newList.length, length)));
return this;
}
NativeArray set(List<T> newList, [int index = 0]) {
toDartList().setAll(index, newList.sublist(0, math.min(newList.length, length)));
return this;
}