SchoolingInfo constructor

SchoolingInfo({
  1. int? startDate,
  2. int? endDate,
  3. String? school,
  4. CodeStub? typeOfEducation,
})

Implementation

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