<ion-list>
<ion-radio ng-model="choice" ng-value="'A'" ng-click='usedGNG("yes")'>Yes</ion-radio>
<ion-radio ng-model="choice" ng-value="'B'" ng-click='usedGNG("no")'>No</ion-radio>
</ion-list>
I've created two radio buttons and now I need to use an AngularJS script to select one of them. I tried searching online for a solution but couldn't find one that worked for me. If anyone can provide some guidance, it would be greatly appreciated. Thank you in advance!