import '../models/song_model.dart'; abstract class AudioManager { Stream get watchCurrentSong; Future playSong(int index, List songList); }