ondragend property

(dynamic Function(DragEvent)?) ondragend

Fires on the source object when the user releases the mouse at the close of a drag operation. @param ev The event.

MDN Reference

Implementation

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

Implementation

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