muted property

bool muted

Gets or sets a flag that indicates whether the audio (either audio or the audio track on video media) is muted.

MDN Reference

Implementation

_i2.bool get muted => _i4.getProperty(
      this,
      'muted',
    );
void muted=(bool value)

Implementation

set muted(_i2.bool value) {
  _i4.setProperty(
    this,
    'muted',
    value,
  );
}