muted property

bool muted

Whether the tab is muted (prevented from playing sound). The tab may be muted even if it has not played or is not currently playing sound. Equivalent to whether the 'muted' audio indicator is showing.

Implementation

bool get muted => _wrapped.muted;
void muted=(bool v)

Implementation

set muted(bool v) {
  _wrapped.muted = v;
}