copy

fun copy(    name: String = this.name,     street: String = this.street,     address: String = this.address,     city: String = this.city,     citySubdivision: String = this.citySubdivision,     countryTertiarySubdivision: String = this.countryTertiarySubdivision,     countrySecondarySubdivision: String = this.countrySecondarySubdivision,     countrySubdivision: String = this.countrySubdivision,     country: String = this.country,     distance: FormattedDistance? = this.distance,     position: GeoPoint = this.position,     entryPoints: List<EntryPoint> = this.entryPoints): PlaceDetails

Creates a copy of this PlaceDetails object.

Return

The copied PlaceDetails object.