getAlbum method

String? getAlbum()

Implementation

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