addAll method

void addAll(
  1. Iterable<T> item
)

Implementation

void addAll(Iterable<T> item) {
  _value.addAll(item);
  update();
}