thenByCompanyAddressDesc method

QueryBuilder<UserProfileModel, UserProfileModel, QAfterSortBy> thenByCompanyAddressDesc()

Implementation

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