hasNextPage property

bool hasNextPage

Getter used for telling us whether there is a new page to load.

Implementation

bool get hasNextPage => totalCount == null || list.length < totalCount!;