itf14 static method

Barcode itf14({
  1. bool drawBorder = true,
  2. double? borderWidth,
  3. double? quietWidth,
})

ITF-14 Barcode

ITF-14 is the GS1 implementation of an Interleaved 2 of 5 (ITF) bar code to encode a Global Trade Item Number. ITF-14 symbols are generally used on packaging levels of a product, such as a case box of 24 cans of soup. The ITF-14 will always encode 14 digits.

ITF 14

drawBorder draws a black border around the barcode

borderWidth specify the width of the border around the barcode

quietWidth defines the width of the quiet zone before and after the barcode, inside the border

Implementation

static Barcode itf14({
  bool drawBorder = true,
  double? borderWidth,
  double? quietWidth,
}) =>
    BarcodeItf14(drawBorder, borderWidth, quietWidth);