onemptied property

(dynamic Function(Event)?) onemptied

Occurs when the media element is reset to its initial state. @param ev The event.

MDN Reference

Implementation

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

Implementation

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