在角度8中更改复选框检查值时触发更改

更改了值,但未触发更改事件。我想在更改ischecked时触发更改

在HTML

 <input class="inputStyle" type="checkbox" [checked]="isChecked"  id="actA" tabindex="0" (change)="onAct($event)">

还有其他功能(以ts为单位)

onChangeoption(lang) {
            this.isChecked = true;     `enter code here`   
 }