sortByBestLength method

QueryBuilder<DictionarySearchResult, DictionarySearchResult, QAfterSortBy> sortByBestLength()

Implementation

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