stopScreenShare static method

Future<bool> stopScreenShare()

Implementation

static Future<bool> stopScreenShare() async {
  try {
    await _channel.invokeMethod('stopScreenShare');
    return true;
  } on PlatformException catch (e) {
    e.stacktrace;
    return false;
  }
}