isCameraFocusSupported method

Future<bool> isCameraFocusSupported(
  1. {ZegoPublishChannel? channel}
)

摄像头是否支持对焦

支持版本:2.14.0 及以上 详情描述:摄像头是否支持对焦。 调用时机:在开启预览后 startPreview 后调用。 注意事项:需要摄像头启动成功 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

  • channel 推流通道
  • Returns 是否支持对焦,支持为 true,不支持为 false

Implementation

Future<bool> isCameraFocusSupported({ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .isCameraFocusSupported(channel: channel);
}