ArcaneProgressBar.error constructor

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

Error progress bar

Implementation

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