wetDryMix method

dynamic wetDryMix({
  1. required double mix,
})

Implementation

wetDryMix({required double mix}) {
  if (checkInstallPlatform()) {
    this.reverb = mix;
    _platform.wetDryMix(mix);
  }
}