removeExcludedShareWindow method

void removeExcludedShareWindow(
  1. int windowId
)

Implementation

void removeExcludedShareWindow(int windowId) {
  ffi.Pointer<ffi.Void> windowIdPtr = ViewPointerFactory.create(windowId);
  _trtcFFIBindings.remove_excluded_share_window(_trtcsharedInstanceNativePointer, windowIdPtr);
  ViewPointerFactory.free(windowIdPtr);
}