copyWith method
Implementation
CameraBehaviour copyWith({
Optional<FollowPosition?>? position,
FollowTilt? tilt
}) {
return CameraBehaviour(
position: position != null ? position.value : this.position,
tilt: tilt ?? this.tilt
);
}
CameraBehaviour copyWith({
Optional<FollowPosition?>? position,
FollowTilt? tilt
}) {
return CameraBehaviour(
position: position != null ? position.value : this.position,
tilt: tilt ?? this.tilt
);
}