orderBy method
Order a select query by the provided Field.
descending
: can be made true to reverse the sort order.
Multiple orderBy clauses can be added to a select query and they are applied in the
order provided.
Implementation
void orderBy(Field field, {bool descending = false}) {
_orderByClause.add(field, descending: descending);
}