seekForwardPlayer method

Future<void> seekForwardPlayer ()

Implementation

static Future<void> seekForwardPlayer() async {
  try {
    await _channel.invokeMethod('seekForwardPlayer');
  } on PlatformException catch (e) {
    print(e.details);
  }
}