ZetaProgressBar constructor

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

Constructor for ZetaProgressBar.

Implementation

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