Value constructor

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

Returns a new Value instance.

Implementation

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