SignalExternalWorkflowExecutionDecisionAttributes constructor

SignalExternalWorkflowExecutionDecisionAttributes({
  1. required String signalName,
  2. required String workflowId,
  3. String? control,
  4. String? input,
  5. String? runId,
})

Implementation

SignalExternalWorkflowExecutionDecisionAttributes({
  required this.signalName,
  required this.workflowId,
  this.control,
  this.input,
  this.runId,
});