mute property

bool mute

If the audio is muted, true is returned.

音声がミュートされている場合はtrueが返ります。

Implementation

bool get mute => _mute;
void mute=(bool mute)

If the audio is muted, true is returned.

音声がミュートされている場合はtrueが返ります。

Implementation

set mute(bool mute) {
  if (mute == _mute) {
    return;
  }
  if (_engine == null) {
    throw Exception(
      "The engine is not initialized. [connect] the engine first.",
    );
  }
  _mute = mute;
  _engine?.muteAllRemoteAudioStreams(_mute);
  notifyListeners();
}