addAll method

void addAll(
  1. Iterable<T> values
)

Implementation

void addAll(Iterable<T> values) {
  _list.addAll(values);
  _checkLength();
}