ZetaProgressBar constructor

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

Constructor for ZetaProgressBar.

Implementation

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