CirclePaint constructor

CirclePaint({
  1. double rate = 50,
  2. double strokeWidth = 3.0,
  3. Color color = Colors.grey,
  4. Color fillColor = Colors.green,
})

Implementation

CirclePaint({
  this.rate = 50,
  this.strokeWidth = 3.0,
  this.color = Colors.grey,
  this.fillColor = Colors.green,
});