muted property

bool get 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;
set muted (bool v)

Implementation

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