EncryptedTelecom.fromJSON constructor
Implementation
factory EncryptedTelecom.fromJSON(Map<String, dynamic> data) {
return EncryptedTelecom(
telecomType: data["telecomType"] == null ? null : TelecomType.fromJSON(data["telecomType"]),
telecomNumber: (data["telecomNumber"] as String?),
telecomDescription: (data["telecomDescription"] as String?),
encryptedSelf: (data["encryptedSelf"] as Base64String?)
);
}