thenByBestLength method

QueryBuilder<DictionarySearchResult, DictionarySearchResult, QAfterSortBy> thenByBestLength()

Implementation

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