addAll method

void addAll (Iterable<E> iterable)

Implementation

void addAll(Iterable<E> iterable) {
  var list = (JS('bool', '# instanceof Array', iterable))
      ? iterable
      : new List.from(iterable);
  callMethod('push', list);
}