Matrix2of5Decoder constructor

const Matrix2of5Decoder({
  1. bool? enabled,
  2. int? length1,
  3. int? length2,
  4. bool? redundancy,
  5. bool? reportCheckDigit,
  6. bool? verifyCheckDigit,
})

Implementation

const Matrix2of5Decoder({
  super.enabled,
  this.length1,
  this.length2,
  this.redundancy,
  this.reportCheckDigit,
  this.verifyCheckDigit,
});