ConvolverNode constructor

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

Implementation

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