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