You can call this method using the "change" event of the input element, so when the variable (in this case the input content) is changed, the method is called.Ex.:
<input type="text" [(ngModel)]="suaVariavel" (change)="seuMetodo($event)" />
Remember that if you intend to change the value of this variable through the code, the above line will generate an infinite loop, since both ngModel and its method will be trying to change the same variable, if this is the case, it is better to use the alternative below:
<input type="text" [ngModel]="suaVariavel" (ngModelChange)="seuMetodo($event)" />
Note that when you use (change), the method call will only occur when the field loses focus, but the method is called with the correct field information.