reset method

void reset()
Resets the synthesizer.

Implementation

void reset() {
  _voices.clear();

  for (Channel ch in channels) {
    ch.reset();
  }

  if (_enableReverbAndChorus) {
    _reverb!.mute();
    _chorus!.mute();
  }

  _blockRead = blockSize;
}