setD method

  1. @override
MusicD setD(
  1. MusicD o
)
override

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;
}