PlayerConfig constructor

PlayerConfig({
  1. bool? shouldShowSubtitles = false,
  2. bool? isMuted = false,
  3. PlayerStyle? playerStyle,
})

Implementation

PlayerConfig({
  this.shouldShowSubtitles = false,
  this.isMuted = false,
  this.playerStyle,
});