PointsLine constructor
PointsLine({})
Implementation
PointsLine(
{this.lineWidth = 2,
this.pointRadius = 0,
this.pointColor,
this.pointInnerRadius,
this.pointInnerColor,
this.isCurve = false,
required this.points,
this.isShowPoint = true,
this.isShowPointText = false,
this.shaderColors,
this.lineColor = Colors.purple}) {
pointColor ??= lineColor;
pointInnerColor ??= lineColor;
pointInnerRadius ??= pointRadius - 1.5;
}