thenByNotificationsEnabled method

QueryBuilder<AppPreferencesDto, AppPreferencesDto, QAfterSortBy> thenByNotificationsEnabled()

Implementation

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