the radio button should be checked according to the value i get in the ngModel, the value that will get on ngModel will be 1 or 0
<div class="col-md-6" id="radio-demo">
<input type="radio" name="in_stock" id="first-choice" [(ngModel)]="fifthSector.in_stock" />
<label for="first-choice">Yes</label>
<input type="radio" name="in_stock" id="second-choice" [(ngModel)]="fifthSector.in_stock" />
<label for="second-choice">No</label>
</div>
now i am getting both radio buttons not checked, how it can be done
