LinkStyle constructor
LinkStyle({})
Defines a visual design of a link on the canvas.
Implementation
LinkStyle({
this.lineType = LineType.solid,
this.arrowType = ArrowType.none,
this.backArrowType = ArrowType.none,
this.arrowSize = 5,
this.backArrowSize = 5,
this.lineWidth = 1,
this.color = Colors.black,
}) : assert(lineWidth > 0),
assert(arrowSize > 0);