thenByCompanyAddress method

QueryBuilder<UserProfileModel, UserProfileModel, QAfterSortBy> thenByCompanyAddress()

Implementation

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