pdf417 static method

Barcode pdf417({
  1. Pdf417SecurityLevel securityLevel = Pdf417SecurityLevel.level2,
  2. double moduleHeight = 2.0,
  3. double preferredRatio = 3.0,
})

PDF417

PDF417 is a stacked linear barcode format used in a variety of applications such as transport, identification cards, and inventory management.

PDF417

securityLevel is the error recovery level

moduleHeight defines the height of the bars

preferredRatio defines the width to height ratio

Implementation

static Barcode pdf417({
  Pdf417SecurityLevel securityLevel = Pdf417SecurityLevel.level2,
  double moduleHeight = 2.0,
  double preferredRatio = 3.0,
}) =>
    BarcodePDF417(securityLevel, moduleHeight, preferredRatio);