addAll method

Future<List<E>> addAll(
  1. Iterable<E> iterable
)

Refer to List.addAll.

Additionally returns the list.

Implementation

Future<List<E>> addAll(Iterable<E> iterable) async {
  return (await this)..addAll(iterable);
}