When the radio button is checked, I want to indicate that with a tick(line checkbox) instead of a dot.
<mat-radio-group class="example-radio-group" [(ngModel)]="row.selected">
<mat-radio-button class="example-radio-button" *ngFor="let season of texts"
[checked]="false" [value]="season.Answer_Id">
<span class="answer"> {{season.Text}} </span>
</mat-radio-button>
</mat-radio-group>
