previousPage method

bool previousPage()

Implementation

bool previousPage() {
  if (_extract != null && _currentPage > 0) {
    _currentPage--;
    return true;
  } else {
    return false;
  }
}