getGenre method

String? getGenre()

Implementation

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