DecoderResult constructor

DecoderResult({
  1. required int barcodeType,
  2. required String barcodeTypeName,
  3. required String binaryDataAsBase64,
  4. required String textualData,
  5. required bool isMatched,
  6. String? characterSet,
  7. Map<String, dynamic>? extra,
  8. List<MRZImage>? mrzImages,
  9. List<Map<String, double>>? locationPoints,
  10. Uint8List? sadlImage,
})

Implementation

DecoderResult({
  required this.barcodeType,
  required this.barcodeTypeName,
  required this.binaryDataAsBase64,
  required this.textualData,
  required this.isMatched,
  this.characterSet,
  this.extra,
  this.mrzImages,
  this.locationPoints,
  this.sadlImage,
});