ExpectedBarcode constructor

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

Implementation

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