canLastPage method

bool canLastPage()

Implementation

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