CirclePainter constructor

CirclePainter(
  1. Animation<double> _animation, {
  2. required Color color,
  3. bool? reverse = false,
})

Implementation

CirclePainter(
  this._animation, {
  required this.color,
  this.reverse = false,
}) : super(repaint: _animation);