DecodeHint constructor

const DecodeHint({
  1. Object? other,
  2. bool pureBarcode = false,
  3. List<BarcodeFormat>? possibleFormats,
  4. bool tryHarder = false,
  5. String? characterSet,
  6. List<int>? allowedLengths,
  7. bool assumeCode39CheckDigit = false,
  8. bool assumeGs1 = false,
  9. bool returnCodabarStartEnd = false,
  10. ResultPointCallback? needResultPointCallback,
  11. List<int>? allowedEanExtensions,
  12. bool alsoInverted = false,
})

Implementation

const DecodeHint({
  this.other,
  this.pureBarcode = false,
  this.possibleFormats,
  this.tryHarder = false,
  this.characterSet,
  this.allowedLengths,
  this.assumeCode39CheckDigit = false,
  this.assumeGs1 = false,
  this.returnCodabarStartEnd = false,
  this.needResultPointCallback,
  this.allowedEanExtensions,
  this.alsoInverted = false,
});