codabar static method

Barcode codabar({
  1. BarcodeCodabarStartStop start = BarcodeCodabarStartStop.A,
  2. BarcodeCodabarStartStop stop = BarcodeCodabarStartStop.B,
  3. bool printStartStop = false,
  4. bool explicitStartStop = false,
})

Codabar Barcode

Codabar was designed to be accurately read even when printed on dot-matrix printers for multi-part forms such as FedEx airbills and blood bank forms, where variants are still in use as of 2007.

Codabar

start is the start symbol to use

stop is the stop symbol to use

printStartStop outputs the Start and Stop characters as text under the barcode

explicitStartStop explicitly specify the Start and Stop characters as letters (ABCDETN*) in the data. In this case, start and stop settings are ignored

Implementation

static Barcode codabar({
  BarcodeCodabarStartStop start = BarcodeCodabarStartStop.A,
  BarcodeCodabarStartStop stop = BarcodeCodabarStartStop.B,
  bool printStartStop = false,
  bool explicitStartStop = false,
}) =>
    BarcodeCodabar(start, stop, printStartStop, explicitStartStop);