Code11Decoder constructor

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

Implementation

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