addAll method

void addAll(
  1. List<T> items
)

Implementation

void addAll(List<T> items) {
  this._items.addAll(items);
  notifyListeners();
}