Code39Decoder constructor

const Code39Decoder({
  1. bool? enabled,
  2. int? length1,
  3. int? length2,
  4. bool? verifyCheckDigit,
  5. bool? reportCheckDigit,
  6. bool? fullAscii,
  7. bool? redundancy,
  8. bool? convertToCode32,
  9. bool? reportCode32Prefix,
  10. SecurityLevel? securityLevel,
  11. bool? reducedQuietZone,
})

Implementation

const Code39Decoder({
  super.enabled,
  this.length1,
  this.length2,
  this.verifyCheckDigit,
  this.reportCheckDigit,
  this.fullAscii,
  this.redundancy,
  this.convertToCode32,
  this.reportCode32Prefix,
  this.securityLevel,
  this.reducedQuietZone,
});