CirclePainter constructor

CirclePainter({
  1. Offset? center,
  2. double? radius = 0.0,
  3. bool? stroke,
  4. Color? strokeColor,
  5. double? strokeOpacity,
  6. double? strokeWidth,
  7. StrokeCap? strokeCap,
  8. StrokeJoin? strokeJoin,
  9. bool? fill,
  10. Color? fillColor,
  11. double? fillOpacity,
})

Implementation

CirclePainter({
  this.center,
  this.radius = 0.0,
  this.stroke,
  this.strokeColor,
  this.strokeOpacity,
  this.strokeWidth,
  this.strokeCap,
  this.strokeJoin,
  this.fill,
  this.fillColor,
  this.fillOpacity,
});