PathPainter constructor
Implementation
PathPainter({
required this.path,
required this.pathColor,
required this.pathWidth,
}) : pathPaint = Paint()
..color = pathColor
..style = PaintingStyle.stroke
..strokeWidth = pathWidth;