getComment method
Implementation
String? getComment() {
for (final comment in _comments) {
if (comment.name == 'DESCRIPTION') {
return utf8.decode(comment.data);
} else if (comment.name == 'COMMENT') {
return utf8.decode(comment.data);
}
}
return '';
}