jump method

Future<void> jump(
  1. int index
)

It is for navigating between videos .

It only workes if you're using multiple videos

jump(index) index is the index of the next video which you want to play

Implementation

Future<void> jump(int index) async => await _player.jump(index);