onmousemove property
dynamic Function(MouseEvent)?
get
onmousemove
Fires when the user moves the mouse over the object. @param ev The mouse event.
Implementation
_i2.dynamic Function(_i3.MouseEvent)? get onmousemove =>
(_i3.MouseEvent p0) => _i4.callMethod(
_i4.getProperty(
this,
'onmousemove',
),
r'call',
[
this,
p0,
],
);
set
onmousemove
(dynamic value(MouseEvent)?)
Implementation
set onmousemove(_i2.dynamic Function(_i3.MouseEvent)? value) {
_i4.setProperty(
this,
'onmousemove',
value == null ? _i6.undefined : _i4.allowInterop(value),
);
}