I have a checkbox like this:
<ion-item>
<ion-label>Essa atividade já foi feita</ion-label>
<ion-checkbox dark checked="true" [(ngModel)]="statusTarefa"></ion-checkbox>
</ion-item>
However, checked="true" doesn’t work, since the checkbox appears unchecked. And if the user doesn’t check and uncheck, it retuns undefined as value. I tried setting checked="false" but still returns undefined.
