fromJSON static method
Implementation
static 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?)
);
}