toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final androidAppLink = this.androidAppLink;
final category = this.category;
final contextualKeywords = this.contextualKeywords;
final destinationAddress = this.destinationAddress;
final destinationId = this.destinationId;
final destinationName = this.destinationName;
final formattedPrice = this.formattedPrice;
final formattedSalePrice = this.formattedSalePrice;
final imageUrl = this.imageUrl;
final iosAppLink = this.iosAppLink;
final iosAppStoreId = this.iosAppStoreId;
final originId = this.originId;
final originName = this.originName;
final price = this.price;
final salePrice = this.salePrice;
final similarDestinationIds = this.similarDestinationIds;
final title = this.title;
return {
'androidAppLink': ?androidAppLink,
'category': ?category,
'contextualKeywords': ?contextualKeywords,
'destinationAddress': ?destinationAddress,
'destinationId': ?destinationId,
'destinationName': ?destinationName,
'formattedPrice': ?formattedPrice,
'formattedSalePrice': ?formattedSalePrice,
'imageUrl': ?imageUrl,
'iosAppLink': ?iosAppLink,
'iosAppStoreId': ?iosAppStoreId,
'originId': ?originId,
'originName': ?originName,
'price': ?price,
'salePrice': ?salePrice,
'similarDestinationIds': ?similarDestinationIds,
'title': ?title,
};
}