skipPrevious static method

Future skipPrevious()

Skips to the previous track

Throws a PlatformException if skipping failed Throws a MissingPluginException if the method is not implemented on the native platforms.

Implementation

static Future skipPrevious() async {
  try {
    await _channel.invokeMethod(MethodNames.skipPrevious);
  } on Exception catch (e) {
    _logException(MethodNames.skipPrevious, e);
    rethrow;
  }
}