SchematicEdgeData constructor

SchematicEdgeData({
  1. required String id,
  2. required List<SchematicPoint> points,
  3. String? source,
  4. String? sourcePort,
  5. String? target,
  6. String? targetPort,
  7. List<SchematicPoint>? junctionPoints,
  8. List<SchematicPoint>? dots,
  9. String name = '',
  10. String? parentId,
  11. String parentName = '',
  12. String cssClass = '',
  13. int signalWidth = 1,
  14. String? scopeHierarchyPath,
  15. List<int>? addr,
})

Create a new SchematicEdgeData.

Implementation

SchematicEdgeData({
  required this.id,
  required this.points,
  this.source,
  this.sourcePort,
  this.target,
  this.targetPort,
  this.junctionPoints,
  this.dots,
  this.name = '',
  this.parentId,
  this.parentName = '',
  this.cssClass = '',
  this.signalWidth = 1,
  this.scopeHierarchyPath,
  this.addr,
});