increasePage method

void increasePage()

Implementation

void increasePage() {
  if (hasMorePages) {
    _page++;
    notifyListeners();
  }
}