isCameraZoomSupported method
@detail api @author zhangzhenyu.samuel @brief Detect whether the currently used camera (front/postcondition) supports zoom (digital/optical zoom). @return - true: Support - false: Not supported @note Camera zoom capability can only be detected if startVideoCapture{@link #RTCEngine#startVideoCapture} is used for video capture using the SDK internal capture module.
Implementation
FutureOr<boolean> isCameraZoomSupported() async {
return await nativeCall('isCameraZoomSupported', []);
}