BarcodeItf constructor

const BarcodeItf(
  1. bool addChecksum,
  2. bool zeroPrepend,
  3. bool drawBorder,
  4. double? borderWidth,
  5. double? quietWidth,
  6. int? fixedLength,
)

Create an ITF-14 Barcode

Implementation

const BarcodeItf(
  this.addChecksum,
  this.zeroPrepend,
  this.drawBorder,
  this.borderWidth,
  this.quietWidth,
  this.fixedLength,
) : assert(fixedLength == null || fixedLength % 2 == 0);