onBlur method

WidgetElementVisible onBlur(
  1. dynamic fun(
    1. Element,
    2. Event
    )?
)
inherited

The blur event fires when an element has lost focus. Read more...

Implementation

WidgetElementVisible onBlur(Function(Element, Event)? fun) {
  if (fun != null) on.call('blur', fun);
  return this;
}