SoundD constructor

SoundD({
  1. Pointer<SoundC>? originalPointer,
  2. required AudioStreamD stream,
  3. required int frameCount,
})

Implementation

SoundD({
  super.originalPointer,
  required this.stream,
  required this.frameCount,
});