setC method
Copies the fields of the native struct o into this instance.
Implementation
@override
SoundD setC(SoundC o) {
onOriginalPointer((p) {
p.ref.stream.setC(o.stream);
});
stream.setC(o.stream);
frameCount = o.frameCount;
return this;
}