goToNextPage method

void goToNextPage()

Implementation

void goToNextPage() {
  if (!canGoToNextPage) return;

  // Use cursor if available, otherwise use offset pagination
  if (nextCursor != null) {
    _executePaginationAction('goToNextPage', cursor: nextCursor, page: page + 1);
  } else {
    handlePageChange(page + 1);
  }
}