GraphEdge constructor

const GraphEdge({
  1. String? id,
  2. required String from,
  3. required String to,
  4. String? trigger,
  5. String? label,
  6. String? condition,
  7. required String source,
  8. required SourceRef sourceRef,
})

Implementation

const GraphEdge({
  this.id,
  required this.from,
  required this.to,
  this.trigger,
  this.label,
  this.condition,
  required this.source,
  required this.sourceRef,
});