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