How can we efficiently toggle the visibility of a div inside ngFor, as shown in the example below? Each click should toggle the visibility of a div from the same iteration. The main concern is how to properly bind this event/DOM.
<div *ngFor="let hero of heroes; let i = index">
<div [hidden]="?">Toggle my visibility</div>
<div (click)="?">Click me</div>
</div>