seekBackward method

Future<void> seekBackward()

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

Implementation

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