addAll method

void addAll(
  1. Iterable<T> value
)

add element list in list and notify listeners

Implementation

void addAll(Iterable<T> value) {
  this.value.addAll(value);
  notifyListeners();
}