In a Angular 2 / Dart Template I have the following line of code:
<input (keyup)="addressChanged('destination')"
(change)="addressChanged('destination')"
type="text"
value="" />
Is there a syntactical way to bind multiple events at once?
Like this:
<input (keyup,change)="addressChanged('destination')"
type="text" value="" />
Otherwise with many events there is a lot of redundancy ...