PlexProgressBar constructor

const PlexProgressBar({
  1. Key? key,
  2. double value = 0,
  3. double max = 100,
  4. String? label,
  5. bool showValue = false,
  6. PlexProgressBarSize size = PlexProgressBarSize.md,
  7. PlexProgressBarTone tone = PlexProgressBarTone.brand,
  8. bool indeterminate = false,
})

Implementation

const PlexProgressBar({
  super.key,
  this.value = 0,
  this.max = 100,
  this.label,
  this.showValue = false,
  this.size = PlexProgressBarSize.md,
  this.tone = PlexProgressBarTone.brand,
  this.indeterminate = false,
});