copyWith method
Implementation
ScalingSettings copyWith({
double? scaleRatioThreshold,
double? scaleRatioThresholdInRotation
}) {
return ScalingSettings(
scaleRatioThreshold: scaleRatioThreshold ?? this.scaleRatioThreshold,
scaleRatioThresholdInRotation: scaleRatioThresholdInRotation ?? this.scaleRatioThresholdInRotation
);
}