Test if the given value is a valid OID.
Note: for performance reason, it does only the basic check.
bool isValidOid(String value) => value.length == oidLength && _reOid.hasMatch(value);