copyWith method

RotationRecognizeSettings copyWith({
  1. RotationRecognizeThresholds? rotationThreshold,
  2. RotationRecognizeThresholds? rotationThresholdInScaling,
})

Implementation

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