play static method
Plays a single run of the given file, with a given volume.
Implementation
static Future<AudioPlayer> play(String file, {double volume = 1.0}) {
return audioCache.play(file + ".mp3",
volume: volume, mode: PlayerMode.LOW_LATENCY);
}