onabort property

(dynamic Function(UIEvent)?) onabort

Fires when the user aborts the download. @param ev The event.

MDN Reference

Implementation

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

Implementation

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