isLoadingNextPage property

bool get isLoadingNextPage

True while an infinite-paging next-page request is in flight.

The flag covers the shared in-flight request used to coalesce concurrent next-page loads and returns to false when that request completes or fails. It remains false when no incremental next-page load is running and is reset to false when the dataset closes.

Implementation

bool get isLoadingNextPage => _dataSet._pagingCoordinator.isLoadingNextPage;