PointPainter constructor

PointPainter(
  1. List<Offset> points, {
  2. Color color = Colors.red,
  3. double strokeWidth = 1.0,
})

Implementation

PointPainter(this.points,
    {Color color = Colors.red, double strokeWidth = 1.0})
    : super(color: color, strokeWidth: strokeWidth);