CircularProgressBar constructor

const CircularProgressBar({
  1. Key? key,
  2. required double outerRadius,
  3. required double ringsWidth,
  4. Color ringsColor = ColorConstrant.themeColor,
  5. double progress = 0.0,
  6. Duration duration = const Duration(seconds: 15),
})

Implementation

const CircularProgressBar({
  Key? key,
  required this.outerRadius,
  required this.ringsWidth,
  this.ringsColor = ColorConstrant.themeColor,
  this.progress = 0.0,
  this.duration = const Duration(seconds: 15),
}) : super(key: key);