OverLayOptions constructor

OverLayOptions({
  1. required PodVideoState podVideoState,
  2. required Duration videoDuration,
  3. required Duration videoPosition,
  4. required bool isFullScreen,
  5. required bool isLooping,
  6. required bool isOverlayVisible,
  7. required bool isMute,
  8. required bool autoPlay,
  9. required String currentVideoPlaybackSpeed,
  10. required List<String> videoPlayBackSpeeds,
  11. required PodVideoPlayerType videoPlayerType,
  12. required PodProgressBar podProgresssBar,
})

Implementation

OverLayOptions({
  required this.podVideoState,
  required this.videoDuration,
  required this.videoPosition,
  required this.isFullScreen,
  required this.isLooping,
  required this.isOverlayVisible,
  required this.isMute,
  required this.autoPlay,
  required this.currentVideoPlaybackSpeed,
  required this.videoPlayBackSpeeds,
  required this.videoPlayerType,
  required this.podProgresssBar,
});