isEnableMicrophone method

Future<bool> isEnableMicrophone()

ZH

获取当前麦克风状态

return 当前麦克风是否开启

EN

Get current microphone state

return Whether microphone is enabled

Implementation

Future<bool> isEnableMicrophone() async {
  bool enabled = await _channel.invokeMethod('isEnableMicrophone');
  return enabled;
}