ExProgressBar constructor

const ExProgressBar({
  1. required int value,
  2. required Color color1,
  3. required Color color2,
  4. Key? key,
  5. double? height,
  6. double? radius,
})

Implementation

const ExProgressBar({
  required this.value,
  required this.color1,
  required this.color2,
  super.key,
  this.height,
  this.radius,
});