toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (classificationId != null) {
json[r'ClassificationId'] = classificationId;
}
if (taxonomy != null) {
json[r'Taxonomy'] = taxonomy;
}
if (name != null) {
json[r'Name'] = name;
}
if (parentId != null) {
json[r'ParentId'] = parentId;
}
if (parent != null) {
json[r'Parent'] = parent;
}
return json;
}