seek method

Future<void> seek(
  1. Duration duration
)

For seeking the current playing video to specific duration

seek(duration) the duration is the time that need to seek

Implementation

Future<void> seek(Duration duration) async => await _player.seek(duration);