Is there a way to pass two arguments in this method?
<tr *ngFor="let match of item.matches " (click)="openMatchContent(match,$event)"
openMatchContent(match: any,event:any) {}
When I try to run this code, I receive an error stating Expected 2 arguments, but got 1.