Code93 constructor

Code93({
  1. int? module,
})

Create a Code93 symbology with the default or required properties.

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

Code93 always includes two check characters that requiring an extremely high level of accuracy. The checksum character is the modulo 47 remainder of the sum of the weighted value of the data characters.

Implementation

Code93({int? module}) : super(module: module);