nextPage method

bool nextPage()

Implementation

bool nextPage() {
  if (_extract != null &&
      _extract!.length > ((_currentPage + 1) * 5) &&
      _currentPage >= 0) {
    _currentPage++;
    return true;
  } else {
    return false;
  }
}