I have a radio list group for different payment methods. Also have almost the same structure for shipping methods. I am looking for solution one of the displayed radio in the radio-group to be checked by default.
<ion-list radio-group [(ngModel)]="form.payment_method" (ngModelChange)="changePayment()">
<ion-item *ngFor="let method of form.payment | keys">
<ion-label {{method.value.title}} >
</ion-label>
<ion-radio value="{{method.value.id}}">
</ion-radio>
</ion-item>
</ion-list>