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