OrderByItem.desc constructor

const OrderByItem.desc(
  1. String column
)

The order by item.

Example:

  OrderByItem(CustomColumns.base.width, true);

See also:

Implementation

const OrderByItem.desc(this.column) : isAsc = false;