ArcaneProgressBar.standard constructor

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

Standard progress bar

Implementation

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