play static method
Implementation
static Future<void> play({required String url}) async {
_audioPlayer.stop();
if (_soundInterruptListener != null) {
_soundInterruptListener!();
}
await _audioPlayer.setUrl(url);
await _audioPlayer.play();
}