copyWith method

M7HeadTurnDetectionThreshold copyWith({
  1. double? rotationAngle,
})

Implementation

M7HeadTurnDetectionThreshold copyWith({
  double? rotationAngle,
}) {
  return M7HeadTurnDetectionThreshold(
    rotationAngle: rotationAngle ?? this.rotationAngle,
  );
}