ArcaneProgressBar constructor

const ArcaneProgressBar({
  1. required double value,
  2. String? label,
  3. String height = '8px',
  4. String? gradientStart,
  5. String? gradientEnd,
  6. bool showPercentage = false,
  7. bool animated = true,
  8. String? backgroundColor,
})

Implementation

const ArcaneProgressBar({
  required this.value,
  this.label,
  this.height = '8px',
  this.gradientStart,
  this.gradientEnd,
  this.showPercentage = false,
  this.animated = true,
  this.backgroundColor,
});