isAutoFocusEnabled method

Future<bool?> isAutoFocusEnabled()

查询是否支持自动识别人脸位置

注意:此接口只支持和Android和iOS平台

返回值: true: 支持; false: 不支持

Implementation

Future<bool?> isAutoFocusEnabled() async {
  var result = await _channel.invokeMethod('isAutoFocusEnabled');
  return V2TXLiveFlutterResult.boolValue(result);
}