toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contentLanguage = this.contentLanguage;
final gtin = this.gtin;
final itemId = this.itemId;
final kind = this.kind;
final price = this.price;
final quantity = this.quantity;
final saleId = this.saleId;
final storeCode = this.storeCode;
final targetCountry = this.targetCountry;
final timestamp = this.timestamp;
return {
'contentLanguage': ?contentLanguage,
'gtin': ?gtin,
'itemId': ?itemId,
'kind': ?kind,
'price': ?price,
'quantity': ?quantity,
'saleId': ?saleId,
'storeCode': ?storeCode,
'targetCountry': ?targetCountry,
'timestamp': ?timestamp,
};
}