orderBy method

void orderBy(
  1. List<OrderingTerm> terms
)

Orders the results of this statement by the ordering terms.

Implementation

void orderBy(List<OrderingTerm> terms) {
  orderByExpr = OrderBy(terms);
}