sortByHistoryKey method

QueryBuilder<SearchHistoryItem, SearchHistoryItem, QAfterSortBy> sortByHistoryKey()

Implementation

QueryBuilder<SearchHistoryItem, SearchHistoryItem, QAfterSortBy>
    sortByHistoryKey() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'historyKey', Sort.asc);
  });
}