getArtist method

String? getArtist()

Implementation

String? getArtist() {
  for (final comment in _comments) {
    if (comment.name == 'ARTIST') {
      return utf8.decode(comment.data);
    }
  }
  return null;
}