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