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