buffer property

AudioBuffer? buffer

The buffer property of the AudioBufferSourceNode interface provides the ability to play back audio using an AudioBuffer as the source of the sound data.

If the buffer property is set to the value null, the node generates a single channel containing silence (that is, every sample is 0).

Implementation

AudioBuffer? get buffer;
void buffer=(AudioBuffer? value)

Implementation

set buffer(AudioBuffer? value);