import { Component, Inject } from '@angular/core'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material'; @Component({ selector: 'app-multiple-choice-dialog', templateUrl: './multiple-choice-dialog.component.html', styleUrls: ['./multiple-choice-dialog.component.scss'] }) export class MultipleChoiceDialogComponent { agreePrivacyPolicyNames = false; constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: any ) { } close() { this.dialogRef.close(false); } apply(i: number) { this.dialogRef.close(i); } }