onmouseover property

(dynamic Function(MouseEvent)?) onmouseover

Fires when the user moves the mouse pointer into the object. @param ev The mouse event.

MDN Reference

Implementation

_i2.dynamic Function(_i3.MouseEvent)? get onmouseover =>
    (_i3.MouseEvent p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'onmouseover',
          ),
          r'call',
          [
            this,
            p0,
          ],
        );
void onmouseover=(dynamic value(MouseEvent)?)

Implementation

set onmouseover(_i2.dynamic Function(_i3.MouseEvent)? value) {
  _i4.setProperty(
    this,
    'onmouseover',
    value == null ? _i6.undefined : _i4.allowInterop(value),
  );
}