isSet method

bool isSet(
  1. int fieldID
)
override

Check if a field is currently set or unset, using the fieldId.

Implementation

bool isSet(int fieldID) {
  switch (fieldID) {
    case OLD_SPACE_NAME:
      return isSetOld_space_name();
    case NEW_SPACE_NAME:
      return isSetNew_space_name();
    case IF_NOT_EXISTS:
      return isSetIf_not_exists();
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}