code39 static method

Barcode code39({
  1. bool drawSpacers = true,
})

Code 39 Barcode

The Code 39 specification defines 43 characters, consisting of uppercase letters (A through Z), numeric digits (0 through 9) and a number of special characters (-, ., $, /, +, %, and space).

An additional character (denoted '*') is used for both start and stop delimiters, this can be controlled with the drawSpacers parameter.

CODE 39

Implementation

static Barcode code39({bool drawSpacers = true}) =>
    BarcodeCode39(drawSpacers);