qrCode static method

Barcode qrCode({
  1. int? typeNumber,
  2. BarcodeQRCorrectionLevel errorCorrectLevel = BarcodeQRCorrectionLevel.low,
})

QR Code

QR code (abbreviated from Quick Response code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.

QR-Code

typeNumber QR code version number 1 to 40

errorCorrectLevel is the QR Code Correction Level

Implementation

static Barcode qrCode(
        {int? typeNumber,
        BarcodeQRCorrectionLevel errorCorrectLevel =
            BarcodeQRCorrectionLevel.low}) =>
    BarcodeQR(typeNumber, errorCorrectLevel);