onmouseup property

(dynamic Function(MouseEvent)?) onmouseup

Fires when the user releases a mouse button while the mouse is over the object. @param ev The mouse event.

MDN Reference

Implementation

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

Implementation

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