muted property

bool? get muted

Whether the tab should be muted.

Implementation

bool? get muted => _wrapped.muted;
set muted (bool? v)

Implementation

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