encodeCompressedGtin method
Implementation
void encodeCompressedGtin(StringBuilder buf, int currentPos) {
buf.write('(01)');
final initialPosition = buf.length;
buf.write('9');
encodeCompressedGtinWithoutAI(buf, currentPos, initialPosition);
}