orderByDescending method

QueryBuilder<T> orderByDescending(
  1. String column
)

ORDER BY descending

Implementation

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