copyWith method
Implementation
ReGeocodeResult copyWith({
RegeocodeAddress? regeocodeAddress,
RegeocodeQuery? regeocodeQuery,
}) {
return ReGeocodeResult(
regeocodeAddress: regeocodeAddress ?? this.regeocodeAddress,
regeocodeQuery: regeocodeQuery ?? this.regeocodeQuery,
);
}