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 NEW_ENCODED_PWD:
if (value == null) {
unsetNew_encoded_pwd();
} else {
this.new_encoded_pwd = value as Int8List?;
}
break;
case OLD_ENCODED_PWD:
if (value == null) {
unsetOld_encoded_pwd();
} else {
this.old_encoded_pwd = value as Int8List?;
}
break;
default:
throw new ArgumentError("Field $fieldID doesn't exist!");
}
}