setVideoPath method

Future<void> setVideoPath(
  1. String url
)

Implementation

Future<void> setVideoPath(String url) async {
  try {
    final int result = await _channel.invokeMethod('setVideoPath', url);
    print("setVideoPath $result " + url);
  } on PlatformException catch (e) {
    print("Error from native: $e.message");
  }
}