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