unMuteAudio method
Unmutes audio for the local user.
Implementation
Future<void> unMuteAudio() async {
try {
await CometChatCallsPluginPlatform.instance.nativeUnMuteAudio();
_isAudioMuted = false;
} catch (e) {
throw CometChatCallsException(
ErrorCodeConstants.errorUnMuteAudio,
'Failed to unmute audio',
e.toString(),
);
}
}