thenByDownstepDesc method

QueryBuilder<DictionaryPitch, DictionaryPitch, QAfterSortBy> thenByDownstepDesc()

Implementation

QueryBuilder<DictionaryPitch, DictionaryPitch, QAfterSortBy>
    thenByDownstepDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'downstep', Sort.desc);
  });
}