FancyProgressBar constructor

const FancyProgressBar({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. double? minHeight,
  5. Color? color,
  6. BorderRadiusGeometry? borderRadius,
  7. bool showSparks = false,
  8. bool disableAnimation = false,
})

Implementation

const FancyProgressBar({
  super.key,
  this.value,
  this.backgroundColor,
  this.minHeight,
  this.color,
  this.borderRadius,
  this.showSparks = false,
  this.disableAnimation = false,
});