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