toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final contentLanguage = this.contentLanguage;
final cssProductStatus = this.cssProductStatus;
final customAttributes = this.customAttributes;
final feedLabel = this.feedLabel;
final name = this.name;
final rawProvidedId = this.rawProvidedId;
return {
'attributes': ?attributes,
'contentLanguage': ?contentLanguage,
'cssProductStatus': ?cssProductStatus,
'customAttributes': ?customAttributes,
'feedLabel': ?feedLabel,
'name': ?name,
'rawProvidedId': ?rawProvidedId,
};
}