OrderByItem.named constructor

const OrderByItem.named({
  1. required String column,
  2. bool isAsc = true,
})

The order by item.

Example:

  OrderByItem(CustomColumns.base.width, true);

See also:

Implementation

const OrderByItem.named({
  required this.column,
  this.isAsc = true,
});