ProgressRing constructor

const ProgressRing({
  1. Key? key,
  2. required int progress,
  3. required int max,
  4. double? ringWidth,
  5. Color? color,
  6. double size = 16.0,
  7. Widget? startImage,
  8. Widget? finishImage,
})

Implementation

const ProgressRing(
    {Key? key,
    required this.progress,
    required this.max,
    this.ringWidth,
    this.color,
    this.size = 16.0,
    this.startImage,
    this.finishImage})
    : super(key: key);