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