aztec static method

Barcode aztec({
  1. int minECCPercent = BarcodeAztec.defaultEcPercent,
  2. int userSpecifiedLayers = BarcodeAztec.defaultLayers,
})

Aztec

Named after the resemblance of the central finder pattern to an Aztec pyramid.

Aztec

minECCPercent defines the error correction percentage

userSpecifiedLayers defines the number of layers

Implementation

static Barcode aztec(
        {int minECCPercent = BarcodeAztec.defaultEcPercent,
        int userSpecifiedLayers = BarcodeAztec.defaultLayers}) =>
    BarcodeAztec(minECCPercent, userSpecifiedLayers);