nextPage method

void nextPage()

Navigates to the next page.

Implementation

void nextPage() {
  if (_currentPage < _totalPages) {
    jumpToPage(_currentPage + 1);
  }
}