stopScreenShare method

Future<void> stopScreenShare()

Stops a screen sharing session.

Implementation

Future<void> stopScreenShare() async {
  await _methodChannel.invokeMethod<void>("stopScreenShare");
  return Future.value();
}