audioSeekBy method
Seek in audio playback relative to current position by the given offset in seconds. Positive values seek forward, negative values seek backward. This is an alternative to next/previous which seeks by a fixed interval.
Implementation
@override
Future<void> audioSeekBy(Duration offset) =>
methodChannel.invokeMethod('audioSeekBy', offset.inSeconds);