Command constructor

const Command({
  1. bool emitInitialValue = false,
  2. bool emitLastValue = false,
  3. String? debugName,
  4. String? restriction,
})

Implementation

const Command({
  this.emitInitialValue = false,
  this.emitLastValue = false,
  this.debugName,
  this.restriction,
});