ZetaProgressBar.buffering constructor

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

Constructs buffering example

Implementation

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