toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final degree = this.degree;
final graduationYear = this.graduationYear;
final institutionName = this.institutionName;
return {
'degree': ?degree,
'graduationYear': ?graduationYear,
'institutionName': ?institutionName,
};
}