setAudioMode method
void
setAudioMode()
override
Implementation
@override
void setAudioMode(String setAudioMode, onSuccess, onError) async {
try{
final result = await methodChannel.invokeMethod<String>('setAudioMode', {
"value": setAudioMode,
});
onSuccess(result ?? "success");
} on PlatformException catch (platformException) {
onError(CometChatCallsException(platformException.code, platformException.message, platformException.details));
} catch (e) {
onError(CometChatCallsException(CometChatCallsConstants.codeError, e.toString(), e.toString()));
}
}