EncryptedAddress constructor

const EncryptedAddress({
  1. @Default.new({}) Set<CodeStub> tags,
  2. @Default.new({}) Set<CodeStub> codes,
  3. @Default.new([]) List<Identifier> identifier,
  4. @Default.new(null) AddressType? addressType,
  5. @Default.new(null) String? descr,
  6. @Default.new(null) String? street,
  7. @Default.new(null) String? houseNumber,
  8. @Default.new(null) String? postboxNumber,
  9. @Default.new(null) String? postalCode,
  10. @Default.new(null) String? city,
  11. @Default.new(null) String? state,
  12. @Default.new(null) String? country,
  13. @Default.new(null) String? note,
  14. @Default.new([]) List<Annotation> notes,
  15. @Default.new([]) List<EncryptedTelecom> telecoms,
  16. @Default.new(null) Base64String? encryptedSelf,
})

Implementation

const factory EncryptedAddress({
	@Default({}) Set<CodeStub> tags,
	@Default({}) Set<CodeStub> codes,
	@Default([]) List<Identifier> identifier,
	@Default(null) AddressType? addressType,
	@Default(null) String? descr,
	@Default(null) String? street,
	@Default(null) String? houseNumber,
	@Default(null) String? postboxNumber,
	@Default(null) String? postalCode,
	@Default(null) String? city,
	@Default(null) String? state,
	@Default(null) String? country,
	@Default(null) String? note,
	@Default([]) List<Annotation> notes,
	@Default([]) List<EncryptedTelecom> telecoms,
	@Default(null) Base64String? encryptedSelf,
}) = _EncryptedAddress;