sortByNotes method

QueryBuilder<DictionaryTag, DictionaryTag, QAfterSortBy> sortByNotes()

Implementation

QueryBuilder<DictionaryTag, DictionaryTag, QAfterSortBy> sortByNotes() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'notes', Sort.asc);
  });
}