toggleMute method

Future<bool> toggleMute({
  1. String? inputName,
  2. String? inputUuid,
})

Toggles the audio mute state of an input.

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

Implementation

Future<bool> toggleMute({
  String? inputName,
  String? inputUuid,
}) async =>
    toggleInputMute(
      inputName: inputName,
      inputUuid: inputUuid,
    );