enableCheckSum property
Whether to add a checksum on the far right side of the barcode.
The checksum, also known as the check digit, is the number on the far right side of the barcode. The purpose of the check digit is to verify that the barcode information has been provided correctly.
Defaults to true.
Widget build(BuildContext context) {
return Container(
child: SfBarcodeGenerator(value:'123456',
symbology: Code39(enableCheckSum: false)));
}
```dart
Implementation
final bool enableCheckSum;