orderBy method

OrderBy orderBy (List<Ordering> orderingList)

Implementation

OrderBy orderBy(List<Ordering> orderingList) {
  var resultQuery = new OrderBy();
  resultQuery.options = this.options;
  resultQuery.options["orderBy"] = orderingList;
  return resultQuery;
}