MuteChangedEvent constructor

MuteChangedEvent({
  1. required StreamType streamType,
  2. 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,
      );