onChange method

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

The change event is fired for <input>, <select>, and <textarea> elements when the user modifies the element's value. Read more...

Implementation

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