MuteChangedEvent constructor
MuteChangedEvent({
- required StreamType streamType,
- required bool isMuted,
Implementation
MuteChangedEvent({
/// The type of the stream for which the mute value changed. The updated
/// mute
/// value applies to all devices with this stream type.
required StreamType streamType,
/// Whether or not the stream is now muted.
required bool isMuted,
}) : _wrapped = $js.MuteChangedEvent(
streamType: streamType.toJS,
isMuted: isMuted,
);