orderBy method

Query<T> orderBy(
  1. String column, [
  2. String direction = 'asc'
])

Implementation

Query<T> orderBy(String column, [String direction = 'asc']) {
  _orderBy = 'ORDER BY "$column" ${direction.toUpperCase()}';

  return this;
}