QRCode constructor
QRCode({
- QRCodeVersion? codeVersion,
- ErrorCorrectionLevel errorCorrectionLevel = ErrorCorrectionLevel.high,
- QRInputMode inputMode = QRInputMode.binary,
- 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);