EdgeStyle constructor
EdgeStyle({})
Implementation
EdgeStyle({
Paint? linePaint,
this.lineStyle = LineStyle.solid,
this.borderRadius = 0,
this.dashLength = 10,
this.gapLength = 5,
this.dotLength = 2,
this.arrowType = EdgeArrowType.one,
this.tipAngle = pi * 0.1,
this.tipLength = 10.0,
}) : this.linePaint = linePaint ??
(Paint()
..color = Color(0xFF000000)
..style = PaintingStyle.stroke
..strokeCap = StrokeCap.round
..strokeJoin = StrokeJoin.round
..strokeWidth = 2);