copyWith method

UArOrbit copyWith({
  1. double? yaw,
  2. double? pitch,
  3. double? distance,
  4. UArVector3? target,
  5. 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);