PolylinePainter constructor

PolylinePainter({
  1. List<Offset>? points,
  2. Color? strokeColor,
  3. double? strokeWidth,
  4. double? strokeOpacity,
  5. StrokeCap? strokeCap,
  6. StrokeJoin? strokeJoin,
  7. PathFillType? pathFillType,
  8. bool? isDotted,
  9. bool? culling,
  10. List<Color>? gradientStrokeColors,
  11. List<double>? gradientStrokeStops,
})

Implementation

PolylinePainter({
  this.points,
  this.strokeColor,
  this.strokeWidth,
  this.strokeOpacity,
  this.strokeCap,
  this.strokeJoin,
  this.pathFillType,
  this.isDotted,
  this.culling,
  this.gradientStrokeColors,
  this.gradientStrokeStops,
});