AtomicProgress.circular constructor

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

Implementation

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