void addAll(Iterable<E> iterable)

Source

void addAll(Iterable<E> iterable) {
  // TODO(jacobr): this can be optimized slightly.
  callMethod('push', new List.from(iterable));
}