appendLastPage method

void appendLastPage(
  1. List<ItemType> newItems
)

Appends newItems to the previously loaded ones and sets the next page key to null.

Implementation

void appendLastPage(List<ItemType> newItems) => appendPage(newItems, null);