ChildWorkflowExecutionCompletedEventAttributes constructor

ChildWorkflowExecutionCompletedEventAttributes({
  1. required int initiatedEventId,
  2. required int startedEventId,
  3. required WorkflowExecution workflowExecution,
  4. required WorkflowType workflowType,
  5. String? result,
})

Implementation

ChildWorkflowExecutionCompletedEventAttributes({
  required this.initiatedEventId,
  required this.startedEventId,
  required this.workflowExecution,
  required this.workflowType,
  this.result,
});