ondragleave property

(dynamic Function(DragEvent)?) 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.

MDN Reference

Implementation

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

Implementation

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