isMicOriginalInputEnable method

  1. @override
Future<bool> isMicOriginalInputEnable()

Determine whether the original input of the microphone is enabled.
Return true if the original input of the microphone is enabled, otherwise false.

Implementation

@override
Future<bool> isMicOriginalInputEnable() async {
  return await methodChannel
      .invokeMethod<bool>('isMicOriginalInputEnable')
      .then<bool>((bool? value) => value ?? false);
}