ExpectedBarcode constructor

ExpectedBarcode({
  1. required String barcodeValue,
  2. required String? title,
  3. required String? image,
  4. int count = 1,
})

Implementation

ExpectedBarcode({
  required this.barcodeValue,
  required this.title,
  required this.image,
  this.count = 1,
});