Earmuff a Call Member
This guide covers earmuffing a call. Before you begin, make sure you added the SDK to your app and (Android, iOS, JS) and you are able to make or receive calls.
Earmuff
Earmuff stops the call member from hearing other members.
client.enableEarmuff(callID) { error in
if error != nil {
// Handle earmuff error
}
}
Disable Earmuff
Disabling earmuff allows a previously earmuffed call member to hear other members.
client.disableEarmuff(callID) { error in
if error != nil {
// Handle disable earmuff error
}
}