ProgressBar constructor

ProgressBar({
  1. required int total,
  2. int width = 50,
  3. String fillChar = '█',
  4. String emptyChar = '░',
})

Creates a new progress bar

Implementation

ProgressBar({
  required this.total,
  this.width = 50,
  this.fillChar = '█',
  this.emptyChar = '░',
});