Hello, I have a problem with Angular. I want my button select of the Material Angle to be unchecked when the next function is called, but I have no idea how to do it, could anyone help me ?. I'll put the codes here below.
Function code
uncheckRadio(){
alert('Botao desmarcado')
}
Code of my Radio Button:
<div class="form-group col-md6 form-md-checkboxes">
<label>Instância</label>
<mat-radio-group (change)="radioChange($event)" formControlName="status">
<mat-radio-button color="primary" value="primeira">Primeira Instancia</mat-radio-button>
<mat-radio-button color="primary" value="segunda">Segunda Instancia</mat-radio-button>
</mat-radio-group>
</div>