SingleProgressWidget constructor

const SingleProgressWidget({
  1. Key? key,
  2. required Color mainProgressColor,
  3. required double progress,
  4. required double radius,
  5. required Color shadowColor,
  6. required double rotationAngle,
  7. CircularStrokeCap circularStrokeCap = CircularStrokeCap.butt,
  8. required int index,
  9. required int totalIndex,
  10. required ProgressStyle progressStyle,
  11. required bool isShadowed,
  12. required double lineWidth,
})

Implementation

const SingleProgressWidget(
    {super.key,
      required this.mainProgressColor,
      required this.progress,
      required this.radius,
      required this.shadowColor,
      required this.rotationAngle,
      this.circularStrokeCap = CircularStrokeCap.butt,
      required this.index,
      required this.totalIndex,
      required this.progressStyle,
      required this.isShadowed,
      required this.lineWidth});