PlayStateStreamModel constructor

PlayStateStreamModel({
  1. bool isBuffering = false,
  2. bool isPlayCompleted = false,
  3. bool isPlaying = false,
})

Implementation

PlayStateStreamModel({
  this.isBuffering = false,
  this.isPlayCompleted = false,
  this.isPlaying = false,
});