getLyric method

String? getLyric()

Implementation

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