Check if the Barcode is valid
@nonVirtual bool isValidBytes(Uint8List data) { try { verifyBytes(data); } catch (_) { return false; } return true; }