resume static method

Future resume()

Resumes the current paused track

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

Implementation

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