removeAllExcludedShareWindow method

Future<void> removeAllExcludedShareWindow()

Implementation

Future<void> removeAllExcludedShareWindow() {
  if (Platform.isWindows) {
    return _cloudChannel!.invokeMethod('removeAllExcludedShareWindow');
  }
  return Future.value();
}