copyWith method

RotationRecognizeThresholds copyWith({
  1. double? angleDiffDeg,
  2. double? distanceDiffMm,
})

Implementation

RotationRecognizeThresholds copyWith({
  double? angleDiffDeg,
  double? distanceDiffMm
}) {
  return RotationRecognizeThresholds(
    angleDiffDeg: angleDiffDeg ?? this.angleDiffDeg,
    distanceDiffMm: distanceDiffMm ?? this.distanceDiffMm
  );
}