toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final address = this.address;
final androidAppLink = this.androidAppLink;
final cityName = this.cityName;
final contextualKeywords = this.contextualKeywords;
final description = this.description;
final formattedPrice = this.formattedPrice;
final imageUrl = this.imageUrl;
final iosAppLink = this.iosAppLink;
final iosAppStoreId = this.iosAppStoreId;
final listingId = this.listingId;
final listingName = this.listingName;
final listingType = this.listingType;
final price = this.price;
final propertyType = this.propertyType;
final similarListingIds = this.similarListingIds;
return {
'address': ?address,
'androidAppLink': ?androidAppLink,
'cityName': ?cityName,
'contextualKeywords': ?contextualKeywords,
'description': ?description,
'formattedPrice': ?formattedPrice,
'imageUrl': ?imageUrl,
'iosAppLink': ?iosAppLink,
'iosAppStoreId': ?iosAppStoreId,
'listingId': ?listingId,
'listingName': ?listingName,
'listingType': ?listingType,
'price': ?price,
'propertyType': ?propertyType,
'similarListingIds': ?similarListingIds,
};
}