errorCorrectionLevel property

ErrorCorrectionLevel errorCorrectionLevel
final

Define the encode recovery capacity of the barcode.

Below error correction capability at each of the four levels:

Defaults to ErrorCorrectionLevel.high.

Also refer ErrorCorrectionLevel.

Widget build(BuildContext context) {
   return Container(
       child: SfBarcodeGenerator(value:'123456',
       symbology: QRCode(
        errorCorrectionLevel: ErrorCorrectionLevel.high)));
}
```dart

Implementation

final ErrorCorrectionLevel errorCorrectionLevel;