StopSound method

void StopSound(
  1. SoundD sound
)

Implementation

void StopSound(
  SoundD sound,
) => run(
  () => 'StopSound($sound)',
  () => rl.Audio.StopSound(
    _refSound1(sound).ref,
  ),
);