I’m confused why the following two lines are not equivalent. ngModel enables to modify the state of the button by modifying the value AND to modify the value if the state of the button changes. The checked version only works half way.
<ion-toggle [(ngModel)]="myvalue"></ion-toggle>
<ion-toggle [(checked)]="myvalue"></ion-toggle>
Can anyone explain why checked works only half way?