ArcaneProgressBar.standard constructor

const ArcaneProgressBar.standard({
  1. required double value,
  2. ComponentSize size = ComponentSize.md,
  3. bool showValue = false,
  4. Key? key,
})

Implementation

const ArcaneProgressBar.standard({
  required this.value,
  this.size = ComponentSize.md,
  this.showValue = false,
  super.key,
})  : variant = ProgressVariant.primary,
      indeterminate = false,
      trackColor = null,
      indicatorColor = null;