removeInput method

Future<void> removeInput({
  1. String? inputName,
  2. String? inputUuid,
})

Removes an existing input.

Note: Will immediately remove all associated scene items.

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

Implementation

Future<void> removeInput({
  String? inputName,
  String? inputUuid,
}) async =>
    await remove(inputName: inputName, inputUuid: inputUuid);