WorkflowExecutionInfo constructor
WorkflowExecutionInfo({
- required WorkflowExecution execution,
- required ExecutionStatus executionStatus,
- required DateTime startTimestamp,
- required WorkflowType workflowType,
- bool? cancelRequested,
- CloseStatus? closeStatus,
- DateTime? closeTimestamp,
- WorkflowExecution? parent,
- List<
String> ? tagList,
Implementation
WorkflowExecutionInfo({
required this.execution,
required this.executionStatus,
required this.startTimestamp,
required this.workflowType,
this.cancelRequested,
this.closeStatus,
this.closeTimestamp,
this.parent,
this.tagList,
});