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