setD method
Copies the fields of the Dart struct o into this instance.
Implementation
@override
MusicD setD(MusicD o) {
originalPointer ??= o.originalPointer;
stream.setD(o.stream);
frameCount = o.frameCount;
looping = o.looping;
ctxType = o.ctxType;
return this;
}