toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final guardianId = this.guardianId;
final guardianProfile = this.guardianProfile;
final invitedEmailAddress = this.invitedEmailAddress;
final studentId = this.studentId;
return {
'guardianId': ?guardianId,
'guardianProfile': ?guardianProfile,
'invitedEmailAddress': ?invitedEmailAddress,
'studentId': ?studentId,
};
}