WorkflowTrigger constructor

WorkflowTrigger({
  1. required WorkflowTriggerType type,
  2. required String identifier,
  3. List<WorkflowTriggerVariable> variables = const [],
  4. List<WorkflowTriggerSubscriberVariable> subscriberVariables = const [],
})

Implementation

WorkflowTrigger({
  required this.type,
  required this.identifier,
  this.variables = const [],
  this.subscriberVariables = const [],
});