SchematicEdgeData constructor
- required String id,
- required List<
SchematicPoint> points, - String? source,
- String? sourcePort,
- String? target,
- String? targetPort,
- List<
SchematicPoint> ? junctionPoints, - List<
SchematicPoint> ? dots, - String name = '',
- String? parentId,
- String parentName = '',
- String cssClass = '',
- int signalWidth = 1,
- String? scopeHierarchyPath,
- 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,
});