checkChecksum method
@param s string of digits to check @return {@link #checkStandardUPCEANChecksum(CharSequence)} @throws FormatException if the string does not contain only digits
Implementation
bool checkChecksum(String s) {
return checkStandardUPCEANChecksum(s);
}