isEnableMicrophone method

Future<bool> isEnableMicrophone()

获取当前麦克风状态

return 当前麦克风是否开启

Implementation

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