pauseAudioMixing method Null safety
Pauses playing and mixing audio streams.
The method pauses audio mixing and playback. Call the method after you join a room.
Return 0 indicates a successful call.
Implementation
Future<int> pauseAudioMixing() async {
IntValue reply = await _api.pauseAudioMixing();
return reply.value ?? -1;
}