SoundD constructor

SoundD({
  1. WasmStructPointer<SoundD>? originalPointer,
  2. AudioStreamD? stream,
  3. int frameCount = 0,
})

Implementation

SoundD({
  super.originalPointer,
  AudioStreamD? stream,
  this.frameCount = 0,
}) :
  stream = stream ?? .zero();