DecryptedAddress constructor

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

Implementation

DecryptedAddress({
		Set<CodeStub>? tags,
		Set<CodeStub>? codes,
		List<Identifier>? identifier,
		AddressType? addressType,
		String? descr,
		String? street,
		String? houseNumber,
		String? postboxNumber,
		String? postalCode,
		String? city,
		String? state,
		String? country,
		String? note,
		List<Annotation>? notes,
		List<DecryptedTelecom>? telecoms,
		Base64String? encryptedSelf
	}) : tags = tags ?? {},
	codes = codes ?? {},
	identifier = identifier ?? [],
	addressType = addressType ?? null,
	descr = descr ?? null,
	street = street ?? null,
	houseNumber = houseNumber ?? null,
	postboxNumber = postboxNumber ?? null,
	postalCode = postalCode ?? null,
	city = city ?? null,
	state = state ?? null,
	country = country ?? null,
	note = note ?? null,
	notes = notes ?? [],
	telecoms = telecoms ?? [],
	encryptedSelf = encryptedSelf ?? null;