ShadProgress constructor

const ShadProgress({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. Color? color,
  5. Animation<Color?>? valueColor,
  6. double? minHeight,
  7. String? semanticsLabel,
  8. String? semanticsValue,
  9. BorderRadius? borderRadius,
  10. BorderRadius? innerBorderRadius,
})

Creates a progress bar widget with the specified properties.

Implementation

const ShadProgress({
  super.key,
  this.value,
  this.backgroundColor,
  this.color,
  this.valueColor,
  this.minHeight,
  this.semanticsLabel,
  this.semanticsValue,
  this.borderRadius,
  this.innerBorderRadius,
});