toggleMute method
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,
);