Here is the link to my questionnaire: http://localhost:4200/EditQuestionnaire;id=1;name=Random%20Questionnaire
I have included this code in the ngOnInit() function, however, I am having trouble retrieving the values:
ngOnInit(): void {
this.route.params.subscribe(params => {
this.questionnaireName = params['name'];
this.questionnaireID = params['id'];
});
}