setC method

  1. @override
SoundD setC(
  1. SoundC o
)
override

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

Implementation

@override
SoundD setC(SoundC o) {
  onOriginalPointer((p) {
    p.ref.stream.setC(o.stream);
  });
  stream.setC(o.stream);
  frameCount = o.frameCount;
  return this;
}