orderByDescending method
ORDER BY descending
Implementation
QueryBuilder<T> orderByDescending(String column) {
_orderBys.add('${_formatColumn(column)} DESC');
return this;
}
ORDER BY descending
QueryBuilder<T> orderByDescending(String column) {
_orderBys.add('${_formatColumn(column)} DESC');
return this;
}