isMuted property
bool
get
isMuted
Whether or not the stream is now muted.
Implementation
bool get isMuted => _wrapped.isMuted;
set
isMuted
(bool v)
Implementation
set isMuted(bool v) {
_wrapped.isMuted = v;
}