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