nextPageKey property

PageKeyType? nextPageKey

The key for the next page to be fetched.

Initialized with the same value as firstPageKey, received in the constructor.

Implementation

PageKeyType? get nextPageKey => value.nextPageKey;
void nextPageKey=(PageKeyType? newNextPageKey)

Implementation

set nextPageKey(PageKeyType? newNextPageKey) {
  value = PagingState<PageKeyType, ItemType>(
    error: error,
    itemList: itemList,
    nextPageKey: newNextPageKey,
  );
}