WorkflowExecutionResult constructor

WorkflowExecutionResult({
  1. required String workflowId,
  2. required String executionId,
  3. required WorkflowStatus status,
  4. Map<String, dynamic>? result,
  5. String? error,
  6. required DateTime startedAt,
  7. DateTime? completedAt,
})

Implementation

WorkflowExecutionResult({
  required this.workflowId,
  required this.executionId,
  required this.status,
  this.result,
  this.error,
  required this.startedAt,
  this.completedAt,
});