here is my .html file
<ion-item no-lines (click)="update()" >
<ion-label> Notification</ion-label>
<ion-toggle [(ngModel)]="notify" ></ion-toggle>
</ion-item>
the above code works when i click on the Notification
text but when i click on the ion-toggle
i am not able to invoke the function what should i do to invoke the function.
here is my .ts file
update(){
console.log("invoking notification");
}