thenByCompanyCifDesc method

QueryBuilder<UserProfileModel, UserProfileModel, QAfterSortBy> thenByCompanyCifDesc()

Implementation

QueryBuilder<UserProfileModel, UserProfileModel, QAfterSortBy>
    thenByCompanyCifDesc() {
  return QueryBuilder.apply(this, (query) {
    return query.addSortBy(r'companyCif', Sort.desc);
  });
}