ZetaProgressCircle constructor

const ZetaProgressCircle({
  1. Key? key,
  2. double progress = 0,
  3. double maxValue = 1,
  4. Duration animationDuration = ZetaAnimationLength.fast,
  5. ZetaCircleSizes size = ZetaCircleSizes.xl,
  6. bool? rounded,
  7. VoidCallback? onCancel,
  8. String? label,
  9. Widget? child,
  10. bool showTrack = false,
})

Constructor for ZetaProgressCircle

Implementation

const ZetaProgressCircle({
  super.key,
  super.progress = 0,
  super.maxValue = 1,
  super.animationDuration,
  this.size = ZetaCircleSizes.xl,
  super.rounded,
  this.onCancel,
  this.label,
  this.child,
  this.showTrack = false,
});