Execution constructor
Execution({
- required String id,
- Map<
String, dynamic> ? data, - required bool finished,
- required String mode,
- ExecutionStatus? status,
- String? retryOf,
- String? retrySuccessId,
- DateTime? startedAt,
- DateTime? stoppedAt,
- required String workflowId,
- DateTime? waitTill,
- Map<
String, dynamic> ? customData, - 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,
});