stopSounds method

void stopSounds()

Stop all the currently playing soundHandles.

Implementation

void stopSounds() {
  soundHandles
    ..forEach(context.soLoud.stop)
    ..clear();
}