setMute method
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({
String? inputName,
String? inputUuid,
required bool inputMuted,
}) async =>
setInputMute(
inputMuted: inputMuted,
inputName: inputName,
inputUuid: inputUuid,
);