stopAudio method
Stops the currently playing audio.
Implementation
Future<void> stopAudio() async {
  // Ensure the file path is correct and accessible from the web directory
  await _audioPlayer.stop();
  await _audioPlayer.dispose();
}Stops the currently playing audio.
Future<void> stopAudio() async {
  // Ensure the file path is correct and accessible from the web directory
  await _audioPlayer.stop();
  await _audioPlayer.dispose();
}