toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contentLanguage = this.contentLanguage;
final feedLabel = this.feedLabel;
final gtin = this.gtin;
final name = this.name;
final offerId = this.offerId;
final price = this.price;
final quantity = this.quantity;
final regionCode = this.regionCode;
final saleTime = this.saleTime;
final storeCode = this.storeCode;
final targetAccount = this.targetAccount;
final uid = this.uid;
return {
'contentLanguage': ?contentLanguage,
'feedLabel': ?feedLabel,
'gtin': ?gtin,
'name': ?name,
'offerId': ?offerId,
'price': ?price,
'quantity': ?quantity,
'regionCode': ?regionCode,
'saleTime': ?saleTime,
'storeCode': ?storeCode,
'targetAccount': ?targetAccount,
'uid': ?uid,
};
}