SoundD constructor

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

Implementation

SoundD({
  super.op,
  AudioStreamD? stream,
  int frameCount = 0,
}) :
  _stream = stream ?? .zero(),
  _frameCount = frameCount;