AnimationCircularProgressBar constructor

AnimationCircularProgressBar({
  1. required List<Color> lineColor,
  2. required double width,
  3. required double progress,
  4. double? bgWidth,
  5. double size = 96,
  6. double startAngle = pi / 2,
  7. Color bgColor = Colors.transparent,
  8. Key? key,
})

Implementation

AnimationCircularProgressBar(
    {required this.lineColor,
    required this.width,
    required this.progress,
    this.bgWidth,
    this.size = 96,
    this.startAngle = pi / 2,
    this.bgColor = Colors.transparent,
    Key? key})
    : super(key: key);