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 SPACE_ID:
if (value == null) {
unsetSpace_id();
} else {
this.space_id = value as int;
}
break;
case PARTS:
if (value == null) {
unsetParts();
} else {
this.parts = value as Map<int, LogInfo>;
}
break;
case DATA_PATH:
if (value == null) {
unsetData_path();
} else {
this.data_path = value as Int8List;
}
break;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}