previousSearchHistoryPage method

void previousSearchHistoryPage()

Implementation

void previousSearchHistoryPage() {
  if (currentSearchHistoryPage.value == 1) {
    return;
  }
  currentSearchHistoryPage.value -= 1;
  getHistoryByUser();
}