ZetaProgressBar constructor

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

Constructor for ZetaProgressBar.

Implementation

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