remove method

Future<void> remove(
  1. String inputName
)

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> remove(String inputName) async =>
    await obsWebSocket.sendRequest(Request(
      'RemoveInput',
      requestData: {'inputName': inputName},
    ));