nextPage method

PaginatorModel nextPage()

Navigates to the next page.

Implementation

PaginatorModel nextPage() {
  if (!onLastPage) {
    return copyWith(page: page + 1);
  }
  return this;
}