getInputVolume method

Future<InputVolumeResponse> getInputVolume({
  1. String? inputName,
  2. String? inputUuid,
})

Gets the current volume setting of an input.

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

Implementation

Future<InputVolumeResponse> getInputVolume({
  String? inputName,
  String? inputUuid,
}) async {
  if (inputName == null && inputUuid == null) {
    throw ArgumentError('inputName or inputUuid must be provided');
  }

  final response = await obsWebSocket.sendRequest(Request(
    'GetInputVolume',
    requestData: {
      'inputName': inputName,
      'inputUuid': inputUuid,
    }..removeWhere((key, value) => value == null),
  ));

  return InputVolumeResponse.fromJson(response!.responseData!);
}