toJson method

Map<String, dynamic> toJson()

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