mute_remote_video_stream method

int mute_remote_video_stream(
  1. trtc_cloud instance,
  2. Pointer<Char> user_id,
  3. int stream_type,
  4. bool mute,
)

4.22

Implementation

int mute_remote_video_stream(
  trtc_cloud instance,
  ffi.Pointer<ffi.Char> user_id,
  int stream_type,
  bool mute,
) {
  return _mute_remote_video_stream(
    instance,
    user_id,
    stream_type,
    mute,
  );
}