SchoolingInfo constructor
Implementation
SchoolingInfo({
int? startDate,
int? endDate,
String? school,
CodeStub? typeOfEducation
}) : startDate = startDate ?? null,
endDate = endDate ?? null,
school = school ?? null,
typeOfEducation = typeOfEducation ?? null;