Value constructor

const Value({
  1. List<String>? order,
  2. SortRemainingBy? sortRemainingBy,
})

Returns a new Value instance.

Implementation

const Value({
  this.order,
  this.sortRemainingBy,
});