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