isSet method
Check if a field is currently set or unset, using the fieldId
.
Implementation
bool isSet(int fieldID) {
switch (fieldID) {
case ACCOUNT:
return isSetAccount();
case ENCODED_PWD:
return isSetEncoded_pwd();
case IF_NOT_EXISTS:
return isSetIf_not_exists();
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}