ProgressBar constructor

const ProgressBar({
  1. required num value,
  2. num max = 1.0,
  3. String? label,
  4. Style? barStyle,
  5. Style? trackStyle,
  6. String fillChar = '█',
  7. String emptyChar = '░',
})

Implementation

const ProgressBar({
  required this.value,
  this.max = 1.0,
  this.label,
  this.barStyle,
  this.trackStyle,
  this.fillChar = '█',
  this.emptyChar = '░',
});