onInput method
The input event fires when the value
of an <input>, <select>, or <textarea>
element has been changed.
Read more...
Implementation
Input onInput(Function(Element, Event)? fun) {
if (fun != null) on.call('input', fun);
return this;
}