getCD method

String? getCD()

Implementation

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