copyWith method
Implementation
RegeocodeQuery copyWith({
String? latLonType,
String? poiType,
LatLng? point,
num? radius,
}) {
return RegeocodeQuery(
latLonType: latLonType ?? this.latLonType,
poiType: poiType ?? this.poiType,
point: point ?? this.point,
radius: radius ?? this.radius,
);
}