ZetaProgressCircle constructor

const ZetaProgressCircle({
  1. Key? key,
  2. double progress = 0,
  3. double maxValue = 1,
  4. ZetaCircleSizes size = ZetaCircleSizes.xl,
  5. bool? rounded,
  6. VoidCallback? onCancel,
  7. String? label,
})

Constructor for ZetaProgressCircle

Implementation

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