ArcaneProgressBar constructor

const ArcaneProgressBar({
  1. required double value,
  2. String? label,
  3. ProgressSize size = ProgressSize.md,
  4. ProgressStyle? style,
  5. bool showPercentage = false,
  6. bool animated = true,
  7. Key? key,
})

Implementation

const ArcaneProgressBar({
  required this.value,
  this.label,
  this.size = ProgressSize.md,
  this.style,
  this.showPercentage = false,
  this.animated = true,
  super.key,
});