WorkflowEvent constructor

WorkflowEvent({
  1. required String executionId,
  2. required WorkflowEventType eventType,
  3. String? stepId,
  4. Map<String, dynamic>? data,
  5. String? error,
  6. required DateTime timestamp,
})

Implementation

WorkflowEvent({
  required this.executionId,
  required this.eventType,
  this.stepId,
  this.data,
  this.error,
  required this.timestamp,
});