ZetaProgressBar.buffering constructor

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

Constructs buffering example

Implementation

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