Set the volume of the currently playing audio (0.0 to 1.0)
@override Future<void> setVolume(double volume) async { if (_audioElement != null) { _audioElement!.volume = volume; } }