muted property
bool
get
muted
Gets or sets a flag that indicates whether the audio (either audio or the audio track on video media) is muted.
Implementation
_i2.bool get muted => _i4.getProperty(
this,
'muted',
);
set
muted
(bool value)
Implementation
set muted(_i2.bool value) {
_i4.setProperty(
this,
'muted',
value,
);
}