onInput method

TextArea onInput(
  1. dynamic fun(
    1. Element,
    2. Event
    )?
)

The input event fires when the value of an <input>, <select>, or <textarea> element has been changed. Read more...

Implementation

TextArea onInput(Function(Element, Event)? fun) {
  if (fun != null) on.call('input', fun);
  return this;
}