copyWith method

RegeocodeQuery copyWith({
  1. String? latLonType,
  2. String? poiType,
  3. LatLng? point,
  4. num? radius,
})

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,
  );
}