toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contentLanguage = this.contentLanguage;
final customAttributes = this.customAttributes;
final feedLabel = this.feedLabel;
final legacyLocal = this.legacyLocal;
final name = this.name;
final offerId = this.offerId;
final product = this.product;
final productAttributes = this.productAttributes;
final versionNumber = this.versionNumber;
return {
'contentLanguage': ?contentLanguage,
'customAttributes': ?customAttributes,
'feedLabel': ?feedLabel,
'legacyLocal': ?legacyLocal,
'name': ?name,
'offerId': ?offerId,
'product': ?product,
'productAttributes': ?productAttributes,
'versionNumber': ?versionNumber,
};
}