seekForward method
Seek forward in the song currently playing in the queue. Must call endSeeking() or will not stop seeking.
Implementation
Future<bool> seekForward() async {
if (Platform.isIOS) {
var result = await playerChannel.invokeMethod('seekForward');
return result;
} else {
throw PlatformException(
code: "Device is not iOS!",
message:
"Currently only iOS is supported. Feel free to contribute to Playify to help support Android.");
}
}