QRCode constructor

QRCode({
  1. QRCodeVersion? codeVersion,
  2. ErrorCorrectionLevel errorCorrectionLevel = ErrorCorrectionLevel.high,
  3. QRInputMode inputMode = QRInputMode.binary,
  4. int? module,
})

Create a QRCode symbology with the default or required properties.

The arguments module must be non-negative and greater than 0.

Implementation

QRCode(
    {this.codeVersion,
    this.errorCorrectionLevel = ErrorCorrectionLevel.high,
    this.inputMode = QRInputMode.binary,
    int? module})
    : super(module: module);