ProgressBarState constructor

ProgressBarState({
  1. required Duration current,
  2. required Duration buffered,
  3. required Duration total,
})

Implementation

ProgressBarState({
  required this.current,
  required this.buffered,
  required this.total,
});