nextSearchHistoryPage method

void nextSearchHistoryPage()

Implementation

void nextSearchHistoryPage() {
  if (currentSearchHistoryPage.value == totalSearchHistoryPages.value) {
    return;
  }
  currentSearchHistoryPage.value += 1;
  getHistoryByUser();
}