toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final category = this.category;
final categoryId = this.categoryId;
final parent = this.parent;
return {
'category': ?category,
'categoryId': ?categoryId,
'parent': ?parent,
};
}