nextPage method

void nextPage()

Implementation

void nextPage() {
  if (currentPage.value == totalPages.value) {
    return;
  }
  currentPage.value += 1;
  loadBookings();
}