ProgressBar constructor

const ProgressBar({
  1. double value = 0,
  2. bool indeterminate = false,
  3. double height = 8,
  4. bool showLabel = false,
  5. String? color,
  6. Key? key,
})

Implementation

const ProgressBar({
  this.value = 0,
  this.indeterminate = false,
  this.height = 8,
  this.showLabel = false,
  this.color,
  super.key,
});