setAll method
Refer to List.setAll.
Additionally returns the list.
Implementation
Future<List<E>> setAll(int index, Iterable<E> iterable) async {
return (await this)..setAll(index, iterable);
}
Refer to List.setAll.
Additionally returns the list.
Future<List<E>> setAll(int index, Iterable<E> iterable) async {
return (await this)..setAll(index, iterable);
}