EncryptedTelecom constructor
EncryptedTelecom({
- TelecomType? telecomType,
- String? telecomNumber,
- String? telecomDescription,
- Base64String? encryptedSelf,
Implementation
EncryptedTelecom({
TelecomType? telecomType,
String? telecomNumber,
String? telecomDescription,
Base64String? encryptedSelf
}) : telecomType = telecomType ?? null,
telecomNumber = telecomNumber ?? null,
telecomDescription = telecomDescription ?? null,
encryptedSelf = encryptedSelf ?? null;