setIsVoiceProcessingBypassed static method
Implementation
static Future<void> setIsVoiceProcessingBypassed(bool value) async {
if (kIsWeb) return;
try {
await WebRTC.invokeMethod(
'setIsVoiceProcessingBypassed',
<String, dynamic>{"value": value},
);
} on PlatformException catch (e) {
throw 'Unable to set isVoiceProcessingBypassed: ${e.message}';
}
}