onmouseout property

(dynamic Function(MouseEvent)?) onmouseout

Fires when the user moves the mouse pointer outside the boundaries of the object. @param ev The mouse event.

MDN Reference

Implementation

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

Implementation

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