PipelineDescription constructor

PipelineDescription({
  1. required List<Field> fields,
  2. required String name,
  3. required String pipelineId,
  4. String? description,
  5. List<Tag>? tags,
})

Implementation

PipelineDescription({
  required this.fields,
  required this.name,
  required this.pipelineId,
  this.description,
  this.tags,
});