thenByNotificationsEnabledDesc method

QueryBuilder<AppPreferencesDto, AppPreferencesDto, QAfterSortBy> thenByNotificationsEnabledDesc()

Implementation

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