playLongAudio static method
Plays a single run of the given file file
This method supports long audio files
Implementation
static Future<AudioPlayer> playLongAudio(String file, {double volume = 1.0}) {
return audioCache.play(file, volume: volume);
}