setMute method

Future<void> setMute({
  1. required String inputName,
  2. required bool inputMuted,
})

Sets the audio mute state of an input.

  • Complexity Rating: 2/5
  • Latest Supported RPC Version: 1
  • Added in v5.0.0

Implementation

Future<void> setMute({
  required String inputName,
  required bool inputMuted,
}) =>
    setInputMute(
      inputName: inputName,
      inputMuted: inputMuted,
    );