verifyBytes method
Check if the Barcode is valid. Throws BarcodeException with a proper message in case of error
Implementation
@override
void verifyBytes(Uint8List data) {
final text = utf8.decoder.convert(data);
checkLength(text, maxLength);
super.verifyBytes(data);
}