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 SPACE_ID:
      return this.space_id;
    case COLUMN_NAMES:
      return this.column_names;
    case PARTS:
      return this.parts;
    case TRAVERSE_SPEC:
      return this.traverse_spec;
    case COMMON:
      return this.common;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}