removeExcludedShareWindow method

Future<void> removeExcludedShareWindow(
  1. String windowId
)

Implementation

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