getAlbum method

Future getAlbum()

Returns the album title of the current song if available

Implementation

Future getAlbum() async {
  var metadata = await getMetadata();
  return metadata["album"];
}