onMouseEnter method

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

The mouseenter event is fired at an Element when a pointing device (usually a mouse) is initially moved so that its hotspot is within the element at which the event was fired. Read more...

Implementation

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