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