canNextPage method

bool canNextPage()

Implementation

bool canNextPage() {
  if (last_page == current_page) {
    return false;
  }
  return true;
}