LineView constructor

LineView({
  1. required List<Point> pathPoints,
  2. required Color selectColor,
  3. required double lineWidth,
  4. required Point curPoint,
})

Implementation

LineView(
    {required this.pathPoints,
    required this.selectColor,
    required this.lineWidth,
    required this.curPoint});