addRangeToBottom method

void addRangeToBottom(
  1. List<T> items
)

Adds a range of items to the bottom of the list.

Implementation

void addRangeToBottom(List<T> items) {
  _newItems.addAll(items);
  _lastAddedToBottom = true;
  notifyListeners();
}