isCameraFocusPositionSupported method
@detail api @author zhangzhenyu.samuel @brief Checks if manual focus is available for the currently used camera. @return - true: Available. - false: Unavailable. @note You must call startVideoCapture{@link #RTCEngine#startVideoCapture} to start SDK internal video capturing before calling this API.
Implementation
FutureOr<boolean> isCameraFocusPositionSupported() async {
return await nativeCall('isCameraFocusPositionSupported', []);
}