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