hasNextPage property
bool
get
hasNextPage
True when another page can be requested for the active query.
This is false when paging is disabled or the dataset is closed. When the
adapter reports a total count, the value is derived from the current page
and total page count. If
the total is unknown, a full last load is treated as evidence that another
page may exist; a short load means the end has been reached. The same rule
drives incremental loading in infinite paging mode.
Implementation
bool get hasNextPage => _dataSet._pagingCoordinator.hasNextPage;