getCameraZoomMaxRatio method

double getCameraZoomMaxRatio()
override

Getting the maximum zoom ratio of the camera (for mobile OS)

Implementation

double getCameraZoomMaxRatio() {
  if (_only_support_mobile) {
    return _deviceFFIBindings.get_camera_zoom_max_ratio(_nativePointer);
  } else {
    debugPrint("device-manager-api not support");
    return -1;
  }
}