toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'courses'] = this.courses;
json[r'related_skills'] = this.relatedSkills;
if (this.name != null) {
json[r'name'] = this.name;
} else {
json[r'name'] = null;
}
return json;
}