ZetaProgressBar.standard constructor

const ZetaProgressBar.standard(
  1. {Key? key,
  2. required double progress = 0,
  3. bool rounded = true,
  4. bool isThin = false,
  5. String? label}
)

Constructs a standard progress bar.

Implementation

const ZetaProgressBar.standard({
  super.key,
  required super.progress,
  this.rounded = true,
  this.isThin = false,
  this.label,
}) : type = ZetaProgressBarType.standard;