nextPage method
Navigates to the next page.
Implementation
PaginatorModel nextPage() {
if (!onLastPage) {
return copyWith(page: page + 1);
}
return this;
}
Navigates to the next page.
PaginatorModel nextPage() {
if (!onLastPage) {
return copyWith(page: page + 1);
}
return this;
}