Code128 constructor

Code128({
  1. int? module,
})

Create a Code128 symbology with the default or required properties.

The arguments module must be non-negative and greater than 0.

The Code128 symbology encodes the input symbols supported by Code128A, Code128B, Code128C. The default symbology type of barcode generator is Code128.

This is a very large method. This method could be refactor to a smaller methods, but it degrades the performance.Since it adds the character corresponding to this symbology is added in to the list

Implementation

Code128({int? module})
    : super(
        module: module,
      );