ArcaneProgressBar.warning constructor

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

Implementation

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