ProgressBar constructor

const ProgressBar({
  1. Key? key,
  2. YoutubePlayerController? controller,
  3. ProgressBarColors? colors,
  4. bool isExpanded = false,
})

Creates ProgressBar widget.

Implementation

const ProgressBar({
  super.key,
  this.controller,
  this.colors,
  this.isExpanded = false,
});