GraphFlow constructor

const GraphFlow({
  1. required String id,
  2. String? title,
  3. String? start,
  4. String? description,
  5. required String source,
  6. required SourceRef sourceRef,
})

Implementation

const GraphFlow({
  required this.id,
  this.title,
  this.start,
  this.description,
  required this.source,
  required this.sourceRef,
});