enableAutoAdjustMicVolume method

  1. @override
Future<String> enableAutoAdjustMicVolume(
  1. bool enable
)

Call this method to enable or disable the auto-adjust microphone volume feature.
enable true to enable the auto-adjust microphone volume feature or false to disable it.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> enableAutoAdjustMicVolume(bool enable) async {
  var params = <String, dynamic>{};
  params.putIfAbsent("enable", () => enable);

  return await methodChannel
      .invokeMethod<String>('enableAutoAdjustMicVolume', params)
      .then<String>((String? value) => value ?? "");
}