removeExcludedShareWindow method

  1. @override
void removeExcludedShareWindow(
  1. int windowId
)
override

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

Parameters:

  • windowID(int):
    • Window ID to be removed from the exclusion list.

Implementation

@override
void removeExcludedShareWindow(int windowId) {
  TRTCLog(_tag, "removeExcludedShareWindow: windowId: $windowId");
  if (Platform.isAndroid || Platform.isIOS) {
    debugPrint("trtc-api not support");
    return;
  }
  TRTCCloudNative.instance.removeExcludedShareWindow(windowId);
}