SoftUiProgressBar constructor

const SoftUiProgressBar({
  1. Duration total = Duration.zero,
  2. Duration progress = Duration.zero,
  3. Duration buffered = Duration.zero,
  4. Color? color,
  5. void onSeek(
    1. Duration
    )?,
  6. Key? key,
})

Implementation

const SoftUiProgressBar({
  this.total = Duration.zero,
  this.progress = Duration.zero,
  this.buffered = Duration.zero,
  this.color,
  this.onSeek,
  super.key,
});