toJson method

Map<String, dynamic> toJson()

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