DecryptedEmploymentInfo constructor

const DecryptedEmploymentInfo({
  1. @Default.new(null) int? startDate,
  2. @Default.new(null) int? endDate,
  3. @Default.new(null) CodeStub? professionType,
  4. @Default.new(null) Employer? employer,
  5. required Base64String? encryptedSelf,
})

Implementation

const factory DecryptedEmploymentInfo({
	@Default(null) int? startDate,
	@Default(null) int? endDate,
	@Default(null) CodeStub? professionType,
	@Default(null) Employer? employer,
	required Base64String? encryptedSelf,
}) = _DecryptedEmploymentInfo;