disconnect abstract method

void disconnect([
  1. AudioNode destinationParamOrOutput,
  2. int output,
  3. int input
])

The disconnect() method of the AudioNode lets you disconnect one or more nodes from the node on which the method is called. See also AudioNode.disconnectParam

Implementation

void disconnect([
  AudioNode
      destinationParamOrOutput, // TauAny destinationNodeOrDestinationParamOrOutput,
  int output,
  int input,
]);