thenByHashCodeDesc method

QueryBuilder<Dictionary, Dictionary, QAfterSortBy> thenByHashCodeDesc()

Implementation

QueryBuilder<Dictionary, Dictionary, QAfterSortBy> thenByHashCodeDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'hashCode', Sort.desc);
  });
}