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