LinePainter constructor

LinePainter({
  1. List<Point<num>>? points,
  2. Color? lineColor,
  3. double? lineWidth,
})

Implementation

LinePainter({
  this.points,
  this.lineColor,
  this.lineWidth,
});