getFieldValue method

dynamic getFieldValue(
  1. int fieldID
)
override

Get a field's value by fieldId. Primitive types will be wrapped in the appropriate "boxed" types.

Implementation

getFieldValue(int fieldID) {
  switch (fieldID) {
    case ACCOUNT:
      return this.account;
    case NEW_ENCODED_PWD:
      return this.new_encoded_pwd;
    case OLD_ENCODED_PWD:
      return this.old_encoded_pwd;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}