setIsVoiceProcessingBypassed static method

Future<void> setIsVoiceProcessingBypassed(
  1. bool value
)

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}';
  }
}