removeExcludedShareWindow method

Future<void> removeExcludedShareWindow(
  1. int windowId
)

Implementation

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