start method

Future<void> start(
  1. String url
)

Starts a video presentation. The url parameter refers to a video file that the local participant would like to share.

Implementation

Future<void> start(String url) async {
  await _methodChannel.invokeMethod("start", {"url": url});
  return Future.value();
}