copyWith method
UArOrbit
copyWith({
- double? yaw,
- double? pitch,
- double? distance,
- UArVector3? target,
- double? fov,
Implementation
UArOrbit copyWith({double? yaw, double? pitch, double? distance, UArVector3? target, double? fov}) =>
UArOrbit(yaw: yaw ?? this.yaw, pitch: pitch ?? this.pitch, distance: distance ?? this.distance, target: target ?? this.target, fov: fov ?? this.fov);