toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final latLng = this.latLng;
final locationType = this.locationType;
final postalAddress = this.postalAddress;
final radiusInMiles = this.radiusInMiles;
return {
'latLng': ?latLng,
'locationType': ?locationType,
'postalAddress': ?postalAddress,
'radiusInMiles': ?radiusInMiles,
};
}