addExcludedShareWindow method

Future<void> addExcludedShareWindow(
  1. int windowId
)

Implementation

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