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