NiceAnimatedProgress constructor

const NiceAnimatedProgress({
  1. Key? key,
  2. required double value,
  3. double height = 8,
  4. Color? backgroundColor,
  5. Color? progressColor,
  6. Gradient? gradient,
  7. Duration duration = const Duration(milliseconds: 500),
  8. Curve curve = Curves.easeOutCubic,
  9. BorderRadius? borderRadius,
  10. Widget? label,
})

Implementation

const NiceAnimatedProgress({
  super.key,
  required this.value,
  this.height = 8,
  this.backgroundColor,
  this.progressColor,
  this.gradient,
  this.duration = const Duration(milliseconds: 500),
  this.curve = Curves.easeOutCubic,
  this.borderRadius,
  this.label,
});