setD method

MusicC setD(
  1. MusicD o
)

Implementation

MusicC setD(MusicD o) {
  o.onOriginalPointer((p) {
    stream.setC(p.ref.stream);
    ctxData = p.ref.ctxData;
  });
  frameCount = o.frameCount;
  looping = o.looping;
  ctxType = o.ctxType.value;
  return this;
}