toJson method
Implementation
Map<String, dynamic> toJson() {
final data = <String, dynamic>{};
if (this.regeocodeAddress != null) {
data['regeocodeAddress'] = this.regeocodeAddress?.toJson();
}
if (this.regeocodeQuery != null) {
data['regeocodeQuery'] = this.regeocodeQuery?.toJson();
}
return data;
}