copyWith method

EventsProcessingSettings copyWith({
  1. RotationCenter? rotationCenter,
  2. ScalingCenter? scalingCenter,
})

Implementation

EventsProcessingSettings copyWith({
  RotationCenter? rotationCenter,
  ScalingCenter? scalingCenter
}) {
  return EventsProcessingSettings(
    rotationCenter: rotationCenter ?? this.rotationCenter,
    scalingCenter: scalingCenter ?? this.scalingCenter
  );
}