previous method

Future<void> previous()

play the previously played video

Implementation

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