canLoadNextPage property
Проверяет, можно ли загрузить следующую страницу.
Если данных еще не было или текущая страница меньше последней – возвращает true.
Implementation
@override
bool get canLoadNextPage {
final response = _lastResponse;
if (response == null) return true;
return response.currentPage < response.lastPage;
}