toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final displayName = this.displayName;
final name = this.name;
final productCategory = this.productCategory;
final productLabels = this.productLabels;
return {
'description': ?description,
'displayName': ?displayName,
'name': ?name,
'productCategory': ?productCategory,
'productLabels': ?productLabels,
};
}