setD method

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

Copies the fields of the Dart struct o into this instance.

Implementation

@override
SoundD setD(SoundD o) {
  originalPointer ??= o.originalPointer;
  stream.setD(o.stream);
  frameCount = o.frameCount;
  return this;
}