previousPage method

void previousPage()

Go to the previous page.

Implementation

void previousPage() {
  if (_currentPage > 0) {
    currentPage = _currentPage - 1;
  }
}