ScanResult constructor

const ScanResult({
  1. required int length,
  2. required int encodeType,
  3. required int barType,
  4. String? data,
  5. List<int>? dataBytes,
})

Implementation

const ScanResult({
  required this.length,
  required this.encodeType,
  required this.barType,
  this.data,
  this.dataBytes,
});