muteSession method
Mutes or unmutes audio/video streams for a call session.
Parameters:
sessionId: The session ID of the callmuteIncomingAudio: True to mute incoming audio (speaker)muteOutgoingAudio: True to mute outgoing audio (microphone)muteIncomingVideo: True to mute incoming videomuteOutgoingVideo: True to mute outgoing video (camera)
Returns 0 on success, negative error code on failure.
Implementation
Future<int> muteSession({
required int sessionId,
required bool muteIncomingAudio,
required bool muteOutgoingAudio,
required bool muteIncomingVideo,
required bool muteOutgoingVideo,
}) async {
throw UnimplementedError('muteSession has not been implemented.');
}