OrderBy constructor

OrderBy(
  1. _TelephonyColumn _column, {
  2. Sort sort = Sort.DESC,
})

Orders the query results by the provided column and sort value.

Implementation

OrderBy(this._column, {Sort sort = Sort.DESC}) {
  _sort = sort;
}