toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final address = this.address;
final locationName = this.locationName;
final placeId = this.placeId;
return {
'address': ?address,
'locationName': ?locationName,
'placeId': ?placeId,
};
}