orderBy method

Query<T> orderBy(
  1. String? column, {
  2. bool? descending,
})

---------- ORDER ----------

Implementation

Query<T> orderBy(String? column, {bool? descending}) {
  if (column == null) return this;
  base.addOrderBy(column, descending: descending == true);
  return this;
}