toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final contentLanguage = this.contentLanguage;
final destinationStatuses = this.destinationStatuses;
final feedLabel = this.feedLabel;
final issues = this.issues;
final name = this.name;
final parent = this.parent;
final productId = this.productId;
final targetCountry = this.targetCountry;
return {
'attributes': ?attributes,
'contentLanguage': ?contentLanguage,
'destinationStatuses': ?destinationStatuses,
'feedLabel': ?feedLabel,
'issues': ?issues,
'name': ?name,
'parent': ?parent,
'productId': ?productId,
'targetCountry': ?targetCountry,
};
}