<ion-list radio-group style="margin-bottom:10px;" [(ngModel)]="orcamento.tipo" name="tipo" #tipo="ngModel">
<ion-item>
<ion-label>Consumidor</ion-label>
<ion-radio value="consumidor" checked="true"></ion-radio>
</ion-item>
<ion-item>
<ion-label>Revenda</ion-label>
<ion-radio value="revenda"></ion-radio>
</ion-item>
</ion-list>
I wanted the first option of these radio inputs to be selected by default, but in the template it looks like this:
Why is the option not being selected?