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 ALIAS:
if (value == null) {
unsetAlias();
} else {
this.alias = value as Int8List?;
}
break;
case PROP:
if (value == null) {
unsetProp();
} else {
this.prop = value as Int8List?;
}
break;
case STAT:
if (value == null) {
unsetStat();
} else {
this.stat = value as int?;
}
break;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}