ProductBarcodeModel constructor

ProductBarcodeModel({
  1. required String barcode,
  2. required String name,
  3. required double price,
  4. double quantity = 1,
})

Implementation

ProductBarcodeModel({
  required this.barcode,
  required this.name,
  required this.price,
  this.quantity = 1,
});