thenByCompanyPhoneDesc method

QueryBuilder<UserProfileModel, UserProfileModel, QAfterSortBy> thenByCompanyPhoneDesc()

Implementation

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