EncryptedTelecom constructor

EncryptedTelecom({
  1. TelecomType? telecomType,
  2. String? telecomNumber,
  3. String? telecomDescription,
  4. Base64String? encryptedSelf,
})

Implementation

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