So I wanted to use audio query to list out the songs in flutter, According to their documentation
List<SongInfo> songs = await audioQuery.getSongs();
is the way to do the job,
But await can't work without async being defined. Can any solve this?