onChange method
The change event is fired for <input>,
<select>, and <textarea> elements when
the user modifies the element's value.
Read more...
Implementation
Input onChange(Function(Element, Event)? fun) {
if (fun != null) on.call('change', fun);
return this;
}