defaultMuted property

bool get defaultMuted

The HTMLMediaElement.defaultMuted property reflects the muted HTML attribute, which indicates whether the media element's audio output should be muted by default. This property has no dynamic effect. To mute and unmute the audio output, use the HTMLMediaElement.muted property.

Implementation

external bool get defaultMuted;
set defaultMuted (bool value)

Implementation

external set defaultMuted(bool value);