itf16 static method

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

ITF-16 Barcode

ITF-16 is a standardized version of the Interleaved 2 of 5 barcode, also known as UPC Shipping Container Symbol. It is used to mark cartons, cases, or pallets that contain products. It containins 16 digits, the last being a check digit.

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 itf16({
  bool drawBorder = true,
  double? borderWidth,
  double? quietWidth,
}) =>
    BarcodeItf16(drawBorder, borderWidth, quietWidth);