WorkflowDescriptor constructor

const WorkflowDescriptor({
  1. required String id,
  2. required String name,
  3. required String version,
  4. String? description,
})

Implementation

const WorkflowDescriptor({
  required this.id,
  required this.name,
  required this.version,
  this.description,
});