nextPage method
void
nextPage()
Navigates to the next page.
Implementation
void nextPage() {
if (_currentPage < _totalPages) {
jumpToPage(_currentPage + 1);
}
}
Navigates to the next page.
void nextPage() {
if (_currentPage < _totalPages) {
jumpToPage(_currentPage + 1);
}
}