isVoiceProcessingBypassed static method
Implementation
static Future<bool> isVoiceProcessingBypassed() async {
if (kIsWeb) return false;
try {
final result = await WebRTC.invokeMethod(
'isVoiceProcessingBypassed',
<String, dynamic>{},
);
return result as bool;
} on PlatformException catch (e) {
throw 'Unable to get isVoiceProcessingBypassed: ${e.message}';
}
}