mutedInfo property

MutedInfo? mutedInfo

The tab's muted state and the reason for the last state change.

Implementation

MutedInfo? get mutedInfo => _wrapped.mutedInfo?.let(MutedInfo.fromJS);
void mutedInfo=(MutedInfo? v)

Implementation

set mutedInfo(MutedInfo? v) {
  _wrapped.mutedInfo = v?.toJS;
}