WorkflowExecutionInfo constructor

WorkflowExecutionInfo({
  1. required WorkflowExecution execution,
  2. required ExecutionStatus executionStatus,
  3. required DateTime startTimestamp,
  4. required WorkflowType workflowType,
  5. bool? cancelRequested,
  6. CloseStatus? closeStatus,
  7. DateTime? closeTimestamp,
  8. WorkflowExecution? parent,
  9. 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,
});