FamocoDecodedResult constructor

FamocoDecodedResult({
  1. required int length,
  2. String? barcode,
  3. Uint32List? data,
  4. required int symbology,
})

Implementation

FamocoDecodedResult({
  required this.length,
  this.barcode,
  this.data,
  required this.symbology,
});