createScriptProcessor method

ScriptProcessorNode createScriptProcessor([
  1. int? bufferSize = 0,
  2. int? numberOfInputChannels = 2,
  3. int? numberOfOutputChannels = 2
])

Implementation

ScriptProcessorNode createScriptProcessor(
        [int? bufferSize = 0,
        int? numberOfInputChannels = 2,
        int? numberOfOutputChannels = 2]) =>
    js_util.callMethod(this, 'createScriptProcessor',
        [bufferSize, numberOfInputChannels, numberOfOutputChannels]);