AtomicProgress constructor

const AtomicProgress({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. Color? valueColor,
  5. AtomicProgressVariant variant = AtomicProgressVariant.linear,
  6. AtomicProgressSize size = AtomicProgressSize.medium,
  7. double? strokeWidth,
  8. String? label,
  9. bool showPercentage = false,
  10. String? semanticLabel,
  11. EdgeInsetsGeometry? margin,
})

Implementation

const AtomicProgress({
  super.key,
  this.value,
  this.backgroundColor,
  this.valueColor,
  this.variant = AtomicProgressVariant.linear,
  this.size = AtomicProgressSize.medium,
  this.strokeWidth,
  this.label,
  this.showPercentage = false,
  this.semanticLabel,
  this.margin,
});