stop method

void stop(
  1. SoundHandle handle
)

Stop a specific sound handle.

Implementation

void stop(SoundHandle handle) {
  if (!_isInitialized) return;
  try {
    _soloud.stop(handle);
  } catch (e, st) {
    NeomErrorLogger.recordError(e, st, module: 'neom_sound', operation: 'stop');
  }
}