copyWith method
RotationRecognizeSettings
copyWith({
- RotationRecognizeThresholds? rotationThreshold,
- RotationRecognizeThresholds? rotationThresholdInScaling,
Implementation
RotationRecognizeSettings copyWith({
RotationRecognizeThresholds? rotationThreshold,
RotationRecognizeThresholds? rotationThresholdInScaling
}) {
return RotationRecognizeSettings(
rotationThreshold: rotationThreshold ?? this.rotationThreshold,
rotationThresholdInScaling: rotationThresholdInScaling ?? this.rotationThresholdInScaling
);
}