DecryptedAddress constructor
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,
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;