sortByHashCode method

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterSortBy> sortByHashCode()

Implementation

QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterSortBy>
    sortByHashCode() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'hashCode', Sort.asc);
  });
}