Sort constructor

Sort({
  1. bool? empty,
  2. bool? sorted,
  3. bool? unsorted,
})

Returns a new Sort instance.

Implementation

Sort({
  this.empty,
  this.sorted,
  this.unsorted,
});