isLastPage property
bool
get
isLastPage
Returns true
if this is the last page.
Implementation
bool get isLastPage {
var totalPages = this.totalPages;
return totalPages != null && currentPage == totalPages - 1;
}