copyWith method

ReGeocodeResponse copyWith({
  1. String? status,
  2. String? info,
  3. String? infoCode,
  4. ReGeocode? reGeocode,
})

Implementation

ReGeocodeResponse copyWith({
  String? status,
  String? info,
  String? infoCode,
  ReGeocode? reGeocode,
}) {
  return ReGeocodeResponse(
    status: status ?? this.status,
    info: info ?? this.info,
    infoCode: infoCode ?? this.infoCode,
    reGeocode: reGeocode ?? this.reGeocode,
  );
}