AudioBufferSourceNode constructor

  1. @DomName('AudioBufferSourceNode.AudioBufferSourceNode')
  2. @DocsEditable()
AudioBufferSourceNode(BaseAudioContext context, [ Map options ])

Implementation

@DomName('AudioBufferSourceNode.AudioBufferSourceNode')
@DocsEditable()
factory AudioBufferSourceNode(BaseAudioContext context, [Map options]) {
  if (options != null) {
    var options_1 = convertDartToNative_Dictionary(options);
    return AudioBufferSourceNode._create_1(context, options_1);
  }
  return AudioBufferSourceNode._create_2(context);
}