DurationState constructor

const DurationState({
  1. required Duration progress,
  2. required Duration buffered,
  3. Duration? total,
})

Implementation

const DurationState({
  required this.progress,
  required this.buffered,
  this.total,
});