ProgressRing constructor

const ProgressRing({
  1. Key? key,
  2. required double progress,
  3. Color? color,
  4. double size = 60,
  5. double strokeWidth = 5,
  6. Widget? child,
})

Implementation

const ProgressRing({
  super.key,
  required this.progress,
  this.color,
  this.size = 60,
  this.strokeWidth = 5,
  this.child,
});