canPrevPage method

bool canPrevPage()

Implementation

bool canPrevPage() {
  if (current_page == 1) {
    return false;
  }
  return true;
}