setDart method
Copies the fields of o into this instance.
Implementation
@override
WaveD setDart(WaveD o) {
frameCount = o.frameCount;
sampleRate = o.sampleRate;
sampleSize = o.sampleSize;
channels = o.channels;
_dataBuffer = BASE_bufferCopy(o.dataBuffer, sampleSize);
return this;
}