getArtist method

Future getArtist()

Returns the artist of the current song if available

Implementation

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