addExcludedShareWindow method

void addExcludedShareWindow(
  1. int windowId
)

Implementation

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