nextPage method

bool nextPage()

Implementation

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