SvgIconProgressBar constructor

const SvgIconProgressBar({
  1. Key? key,
  2. required double progress,
  3. required String svgString,
  4. required Color colorDefault,
  5. required Color colorProgress,
  6. required double height,
  7. double? width,
})

Implementation

const SvgIconProgressBar({super.key,
  required this.progress,
  required this.svgString,
  required this.colorDefault,
  required this.colorProgress,
  required this.height,
  this.width,
});