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