orderBy method

Find orderBy(
  1. String column, [
  2. bool ascending = false
])

Implementation

Find orderBy(String column, [bool ascending = false]) {
  _orderBy.add(OrderBy(column, ascending));
  return this;
}