thenByBestLengthDesc method

QueryBuilder<DictionarySearchResult, DictionarySearchResult, QAfterSortBy> thenByBestLengthDesc()

Implementation

QueryBuilder<DictionarySearchResult, DictionarySearchResult, QAfterSortBy>
    thenByBestLengthDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'bestLength', Sort.desc);
  });
}