WorkflowState constructor

WorkflowState({
  1. bool? allowAdd,
  2. bool? allowDispatch,
  3. String? backgroundColor,
  4. String? color,
  5. String? description,
  6. bool? end,
  7. String? id,
  8. String? key,
  9. String? name,
  10. double? progression,
  11. String? reference,
  12. String? type,
})

Returns a new WorkflowState instance.

Implementation

WorkflowState({
  this.allowAdd,
  this.allowDispatch,
  this.backgroundColor,
  this.color,
  this.description,
  this.end,
  this.id,
  this.key,
  this.name,
  this.progression,
  this.reference,
  this.type,
});