next method

Future<void> next()

Skip the current video

Implementation

Future<void> next() async {
  super.currentPlayingVideo.value++;
  await _player.next();
}