ondragleave property
dynamic Function(DragEvent)?
get
ondragleave
Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation. @param ev The drag event.
Implementation
_i2.dynamic Function(_i3.DragEvent)? get ondragleave =>
(_i3.DragEvent p0) => _i4.callMethod(
_i4.getProperty(
this,
'ondragleave',
),
r'call',
[
this,
p0,
],
);
set
ondragleave
(dynamic value(DragEvent)?)
Implementation
set ondragleave(_i2.dynamic Function(_i3.DragEvent)? value) {
_i4.setProperty(
this,
'ondragleave',
value == null ? _i6.undefined : _i4.allowInterop(value),
);
}