Workflow constructor

Workflow({
  1. DateTime? createdOn,
  2. Map<String, String>? defaultRunProperties,
  3. String? description,
  4. WorkflowGraph? graph,
  5. DateTime? lastModifiedOn,
  6. WorkflowRun? lastRun,
  7. int? maxConcurrentRuns,
  8. String? name,
})

Implementation

Workflow({
  this.createdOn,
  this.defaultRunProperties,
  this.description,
  this.graph,
  this.lastModifiedOn,
  this.lastRun,
  this.maxConcurrentRuns,
  this.name,
});