CircleProgressBar constructor

const CircleProgressBar({
  1. Key? key,
  2. Duration? animationDuration = const Duration(seconds: 1),
  3. Color backgroundColor = const Color(0x00000000),
  4. required Color foregroundColor,
  5. double? value = 0,
})

Implementation

const CircleProgressBar({
  Key? key,
  this.animationDuration = const Duration(seconds: 1),
  this.backgroundColor = const Color(0x00000000),
  required this.foregroundColor,
  this.value = 0,
}) : super(key: key);