onMouseOut method

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

The mouseout event is fired at an Element when a pointing device (usually a mouse) is used to move the cursor so that it is no longer contained within the element or one of its children. Read more...

Implementation

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