thenByIdDesc method

QueryBuilder<AppPreferencesDto, AppPreferencesDto, QAfterSortBy> thenByIdDesc()

Implementation

QueryBuilder<AppPreferencesDto, AppPreferencesDto, QAfterSortBy>
    thenByIdDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'id', Sort.desc);
  });
}