pageFuture property

PageFuture<T>? pageFuture
final

Called whenever a new page (or batch) is to be fetched

It is provided with the page index, and expected to return a Future that resolves to a list of entries. Please make sure to return only pageSize or less entries (in the case of the last page) for each page.

Implementation

final PageFuture<T>? pageFuture;