thenByPrependDictionaryNames method

QueryBuilder<AnkiMapping, AnkiMapping, QAfterSortBy> thenByPrependDictionaryNames()

Implementation

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