mutedInfo property
MutedInfo?
get
mutedInfo
The tab's new muted state and the reason for the change.
Implementation
MutedInfo? get mutedInfo => _wrapped.mutedInfo?.let(MutedInfo.fromJS);
set
mutedInfo
(MutedInfo? v)
Implementation
set mutedInfo(MutedInfo? v) {
_wrapped.mutedInfo = v?.toJS;
}