getEncoder method

String? getEncoder()

Implementation

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