addExcludedShareWindow method
Implementation
Future<void> addExcludedShareWindow(String windowId) {
if (Platform.isWindows) {
return _cloudChannel!.invokeMethod('addExcludedShareWindow',
{"windowId": int.tryParse(windowId)},
);
}
return Future.value();
}