RoundedProgressComponent constructor

const RoundedProgressComponent({
  1. Key? key,
  2. double strokeWidth = 8.0,
  3. Color backgroundColor = Colors.grey,
  4. Color valueColor = Colors.blue,
})

Implementation

const RoundedProgressComponent({
  Key? key,
  this.strokeWidth = 8.0,
  this.backgroundColor = Colors.grey,
  this.valueColor = Colors.blue,
}) : super(key: key);