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