WorkflowRun constructor

WorkflowRun({
  1. DateTime? completedOn,
  2. String? errorMessage,
  3. WorkflowGraph? graph,
  4. String? name,
  5. String? previousRunId,
  6. DateTime? startedOn,
  7. WorkflowRunStatistics? statistics,
  8. WorkflowRunStatus? status,
  9. String? workflowRunId,
  10. Map<String, String>? workflowRunProperties,
})

Implementation

WorkflowRun({
  this.completedOn,
  this.errorMessage,
  this.graph,
  this.name,
  this.previousRunId,
  this.startedOn,
  this.statistics,
  this.status,
  this.workflowRunId,
  this.workflowRunProperties,
});