copyWith method
GeocodeResult
copyWith({
- List<
GeocodeAddressList> ? geocodeAddressList, - GeocodeQuery? geocodeQuery,
Implementation
GeocodeResult copyWith({
List<GeocodeAddressList>? geocodeAddressList,
GeocodeQuery? geocodeQuery,
}) {
return GeocodeResult(
geocodeAddressList: geocodeAddressList ?? this.geocodeAddressList,
geocodeQuery: geocodeQuery ?? this.geocodeQuery,
);
}