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