thenByHistoryKeyDesc method

QueryBuilder<SearchHistoryItem, SearchHistoryItem, QAfterSortBy> thenByHistoryKeyDesc()

Implementation

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