addAll method

  1. @override
void addAll(
  1. Iterable<E> collection
)
override

Appends all elements of the collection to the end of list. Extends the length of the list by the length of collection. Throws an UnsupportedError if the list is not extendable.

Implementation

@override
void addAll(Iterable<E> collection) {
  collection.forEach(check);
  _wrappedList.addAll(collection);
}