WorkflowTriggerVariable constructor

WorkflowTriggerVariable({
  1. required String id,
  2. required String name,
  3. String? value,
})

Implementation

WorkflowTriggerVariable({
  required this.id,
  required this.name,
  this.value,
});