nextPage method
void
nextPage()
Go to the next page.
Implementation
void nextPage() {
if (_currentPage < pageCount - 1) {
currentPage = _currentPage + 1;
}
}
Go to the next page.
void nextPage() {
if (_currentPage < pageCount - 1) {
currentPage = _currentPage + 1;
}
}