sortByPrependDictionaryNames method

QueryBuilder<AnkiMapping, AnkiMapping, QAfterSortBy> sortByPrependDictionaryNames()

Implementation

QueryBuilder<AnkiMapping, AnkiMapping, QAfterSortBy>
    sortByPrependDictionaryNames() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'prependDictionaryNames', Sort.asc);
  });
}