GraphEdge constructor

const GraphEdge({
  1. required String sourceId,
  2. required String targetId,
  3. String? label,
  4. bool isDashed = false,
  5. Color? color,
})

Implementation

const GraphEdge({
  required this.sourceId,
  required this.targetId,
  this.label,
  this.isDashed = false,
  this.color,
});