addAll method
Adds elements to the list and notifies listeners.
Implementation
void addAll(Iterable<T> elements) {
_rawList.addAll(elements);
_listChanged();
}
Adds elements to the list and notifies listeners.
void addAll(Iterable<T> elements) {
_rawList.addAll(elements);
_listChanged();
}