ArcaneProgressBar constructor

const ArcaneProgressBar({
  1. required double value,
  2. ComponentSize size = ComponentSize.md,
  3. ProgressVariant variant = ProgressVariant.primary,
  4. bool indeterminate = false,
  5. bool showValue = false,
  6. String? trackColor,
  7. String? indicatorColor,
  8. Key? key,
})

Implementation

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