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 EDGE_TYPE:
      return this.edge_type;
    case EDGE_NAME:
      return this.edge_name;
    case VERSION:
      return this.version;
    case SCHEMA:
      return this.schema;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}