addExcludedShareWindow method

Future<void> addExcludedShareWindow(
  1. String windowId
)

Implementation

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