onMouseOver method

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

The mouseover event is fired at an Element when a pointing device (such as a mouse or trackpad) is used to move the cursor onto the element or one of its child elements. Read more...

Implementation

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