removeIncludedShareWindow method

Future<void> removeIncludedShareWindow(
  1. String windowId
)

Implementation

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