previousPage method

void previousPage()

Implementation

void previousPage() {
  if (currentPage.value == 1) {
    return;
  }
  currentPage.value -= 1;
  loadBookings();
}