setDart method

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

Copies the fields of o into this instance.

Implementation

@override
SoundD setDart(SoundD o) {
  stream.setDart(o.stream);
  frameCount = o.frameCount;
  return this;
}