copyWith method
Implementation
ScalingRecognizeSettings copyWith({
double? scaleRatioThreshold,
double? scaleRatioThresholdInRotation,
double? zoomScaleRatio,
double? scaleLogDiffPerMm,
bool? disableZoom
}) {
return ScalingRecognizeSettings(
scaleRatioThreshold: scaleRatioThreshold ?? this.scaleRatioThreshold,
scaleRatioThresholdInRotation: scaleRatioThresholdInRotation ?? this.scaleRatioThresholdInRotation,
zoomScaleRatio: zoomScaleRatio ?? this.zoomScaleRatio,
scaleLogDiffPerMm: scaleLogDiffPerMm ?? this.scaleLogDiffPerMm,
disableZoom: disableZoom ?? this.disableZoom
);
}