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