seekForward method

Future<void> seekForward()

Seek forward in the song currently playing in the queue. Must call endSeeking() or will not stop seeking.

Implementation

Future<void> seekForward() async {
  await playerChannel.invokeMethod('seekForward');
}