Execution constructor

Execution({
  1. required String id,
  2. Map<String, dynamic>? data,
  3. required bool finished,
  4. required String mode,
  5. ExecutionStatus? status,
  6. String? retryOf,
  7. String? retrySuccessId,
  8. DateTime? startedAt,
  9. DateTime? stoppedAt,
  10. required String workflowId,
  11. DateTime? waitTill,
  12. Map<String, dynamic>? customData,
  13. String? workflowName,
})

Implementation

Execution({
  required this.id,
  this.data,
  required this.finished,
  required this.mode,
  this.status,
  this.retryOf,
  this.retrySuccessId,
  this.startedAt,
  this.stoppedAt,
  required this.workflowId,
  this.waitTill,
  this.customData,
  this.workflowName,
});