nextPage method
Implementation
bool nextPage() {
if (last_page == current_page) {
return false;
}
current_page = current_page! + 1;
return true;
}
bool nextPage() {
if (last_page == current_page) {
return false;
}
current_page = current_page! + 1;
return true;
}