BarcodeView constructor

BarcodeView({
  1. Key? key,
  2. required ProductBarcodeModel product,
  3. Dimensions dimensions = Dimensions.defaultDimens,
  4. Color? labelColor,
})

Implementation

BarcodeView({
  super.key,
  required this.product,
  this.dimensions = Dimensions.defaultDimens,
  this.labelColor,
});