AtomicProgress.linear constructor

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

Implementation

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