setFieldValue method
Set a field's value by fieldId
. Primitive types must be "boxed" in the
appropriate object wrapper type.
Implementation
setFieldValue(int fieldID, Object? value) {
switch (fieldID) {
case PROPERTIES:
if (value == null) {
unsetProperties();
} else {
this.properties = value as SpaceDesc?;
}
break;
case IF_NOT_EXISTS:
if (value == null) {
unsetIf_not_exists();
} else {
this.if_not_exists = value as bool;
}
break;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}