ondurationchange property
dynamic Function(Event)?
get
ondurationchange
Occurs when the duration attribute is updated. @param ev The event.
Implementation
_i2.dynamic Function(_i3.Event)? get ondurationchange =>
(_i3.Event p0) => _i4.callMethod(
_i4.getProperty(
this,
'ondurationchange',
),
r'call',
[
this,
p0,
],
);
set
ondurationchange
(dynamic value(Event)?)
Implementation
set ondurationchange(_i2.dynamic Function(_i3.Event)? value) {
_i4.setProperty(
this,
'ondurationchange',
value == null ? _i6.undefined : _i4.allowInterop(value),
);
}