setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
AudioStreamD setD(AudioStreamD o) {
originalPointer ??= o.originalPointer;
sampleRate = o.sampleRate;
sampleSize = o.sampleSize;
channels = o.channels;
return this;
}