EmploymentInfo constructor

EmploymentInfo({
  1. int? startDate,
  2. int? endDate,
  3. CodeStub? professionType,
  4. Employer? employer,
})

Implementation

EmploymentInfo({
		int? startDate,
		int? endDate,
		CodeStub? professionType,
		Employer? employer
	}) : startDate = startDate ?? null,
	endDate = endDate ?? null,
	professionType = professionType ?? null,
	employer = employer ?? null;