addAll method
add element list in list and notify listeners
Implementation
void addAll(Iterable<T> value) {
this.value.addAll(value);
notifyListeners();
}
add element list in list and notify listeners
void addAll(Iterable<T> value) {
this.value.addAll(value);
notifyListeners();
}