setFade method

void setFade(
  1. double startVol,
  2. double endVol,
  3. int durationMs
)

Implementation

void setFade(double startVol, double endVol, int durationMs) {
  if (_engine == ffi.nullptr) return;
  _setFadeInMilliseconds(_engine, startVol, endVol, durationMs);
}