setC method
Copies the fields of the native struct o into this instance.
Implementation
@override
MusicD setC(MusicC o) {
onOriginalPointer((p) {
p.ref.stream.setC(o.stream);
p.ref.ctxData = o.ctxData;
});
stream.setC(o.stream);
frameCount = o.frameCount;
looping = o.looping;
ctxType = .fromValue(o.ctxType);
return this;
}