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 ACCOUNT:
if (value == null) {
unsetAccount();
} else {
this.account = value as Int8List?;
}
break;
case ENCODED_PWD:
if (value == null) {
unsetEncoded_pwd();
} else {
this.encoded_pwd = value as Int8List?;
}
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!");
}
}