removeAllExcludedShareWindow method

  1. @override
void removeAllExcludedShareWindow()
override

Remove all windows from the exclusion list of screen sharing (for desktop systems only)

Implementation

@override
void removeAllExcludedShareWindow() {
  TRTCLog(_tag, "removeAllExcludedShareWindow");
  if (Platform.isAndroid || Platform.isIOS) {
    debugPrint("trtc-api not support");
    return;
  }
  TRTCCloudNative.instance.removeAllExcludedShareWindows();
}