How to get value from html to TS?

I’m using ionic 5 but cannot do the following code:

        <ion-select-option name="myToken" *ngFor="let user of listUsers" [value]="user.token"
          (ionChange)="getTokenUser($event, user.id)">
          {{ user.fullname }}
        </ion-select-option>

I would like to get the user.id from the ngfor and using it on TS, how can achieve that?

Thank you!

I would suggest going through the Angular forms documentation.