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 SESSION_ID:
      return this.session_id;
    case PLAN_ID:
      return this.plan_id;
    case PROFILE_DETAIL:
      return this.profile_detail;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}