NiceBarcodeGenerator constructor

const NiceBarcodeGenerator({
  1. Key? key,
  2. required String data,
  3. NiceBarcodeType type = NiceBarcodeType.code128,
  4. double width = 250,
  5. double height = 80,
  6. bool showText = true,
  7. Color? color,
})

Implementation

const NiceBarcodeGenerator({
  super.key,
  required this.data,
  this.type = NiceBarcodeType.code128,
  this.width = 250,
  this.height = 80,
  this.showText = true,
  this.color,
});