PodPlayerLabels constructor

const PodPlayerLabels({
  1. String? play,
  2. String? pause,
  3. String? mute,
  4. String? unmute,
  5. String settings = 'Settings',
  6. String? fullscreen,
  7. String? exitFullScreen,
  8. String loopVideo = 'Loop Video',
  9. String playbackSpeed = 'Playback speed',
  10. String error = 'Error while playing video',
  11. String quality = 'Quality',
  12. String optionEnabled = 'on',
  13. String optionDisabled = 'off',
})

Labels displayed in the video player progress bar and when an error occurs

Implementation

const PodPlayerLabels({
  this.play,
  this.pause,
  this.mute,
  this.unmute,
  this.settings = 'Settings',
  this.fullscreen,
  this.exitFullScreen,
  this.loopVideo = 'Loop Video',
  this.playbackSpeed = 'Playback speed',
  this.error = 'Error while playing video',
  this.quality = 'Quality',
  this.optionEnabled = 'on',
  this.optionDisabled = 'off',
});