StartChildWorkflowExecutionDecisionAttributes constructor

StartChildWorkflowExecutionDecisionAttributes({
  1. required String workflowId,
  2. required WorkflowType workflowType,
  3. ChildPolicy? childPolicy,
  4. String? control,
  5. String? executionStartToCloseTimeout,
  6. String? input,
  7. String? lambdaRole,
  8. List<String>? tagList,
  9. TaskList? taskList,
  10. String? taskPriority,
  11. String? taskStartToCloseTimeout,
})

Implementation

StartChildWorkflowExecutionDecisionAttributes({
  required this.workflowId,
  required this.workflowType,
  this.childPolicy,
  this.control,
  this.executionStartToCloseTimeout,
  this.input,
  this.lambdaRole,
  this.tagList,
  this.taskList,
  this.taskPriority,
  this.taskStartToCloseTimeout,
});