Trigger constructor

Trigger({
  1. List<Action>? actions,
  2. String? description,
  3. String? id,
  4. String? name,
  5. Predicate? predicate,
  6. String? schedule,
  7. TriggerState? state,
  8. TriggerType? type,
  9. String? workflowName,
})

Implementation

Trigger({
  this.actions,
  this.description,
  this.id,
  this.name,
  this.predicate,
  this.schedule,
  this.state,
  this.type,
  this.workflowName,
});