isAutoAdjustMicVolumeEnabled method
Determine whether the auto-adjust microphone volume feature is enabled.
Return true if the auto-adjust microphone volume feature is enabled, otherwise false.
Implementation
@override
Future<bool> isAutoAdjustMicVolumeEnabled() async {
return await methodChannel
.invokeMethod<bool>('isAutoAdjustMicVolumeEnabled')
.then<bool>((bool? value) => value ?? false);
}