Guardian constructor

Guardian({
  1. String? guardianId,
  2. UserProfile? guardianProfile,
  3. String? invitedEmailAddress,
  4. String? studentId,
})

Implementation

Guardian({
  this.guardianId,
  this.guardianProfile,
  this.invitedEmailAddress,
  this.studentId,
});