WorkflowEntity constructor

const WorkflowEntity({
  1. ID? id,
  2. required Trigger? trigger,
  3. required List<ActionEntity> actions,
  4. String? name,
  5. ID? cubitID,
})

Implementation

const WorkflowEntity({
  this.id,
  required this.trigger,
  required this.actions,
  this.name,
  this.cubitID,
});