AnimatedEllipticalProgressBar constructor

const AnimatedEllipticalProgressBar({
  1. Key? key,
  2. required Color fillColor,
  3. required Color bgColor,
  4. required double progress,
  5. Color? textColor = Colors.white,
  6. bool? showCenterProgress = true,
  7. double? thickness = 10,
  8. TextStyle? progressTextStyle,
})

constructor of animated elliptical progress bar

Implementation

const AnimatedEllipticalProgressBar(
    {Key? key,
    required this.fillColor,
    required this.bgColor,
    required this.progress,
    this.textColor = Colors.white,
    this.showCenterProgress = true,
    this.thickness = 10,
    this.progressTextStyle})
    : super(key: key);