changeVideo method

Future<void> changeVideo({
  1. required PlayVideoFrom playVideoFrom,
  2. PodPlayerConfig playerConfig = const PodPlayerConfig(),
})

used to change the video

Implementation

Future<void> changeVideo({
  required PlayVideoFrom playVideoFrom,
  PodPlayerConfig playerConfig = const PodPlayerConfig(),
}) =>
    _ctr.changeVideo(
      playVideoFrom: playVideoFrom,
      playerConfig: playerConfig,
    );