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 SRC:
      return this.src;
    case DST:
      return this.dst;
    case TYPE:
      return this.type;
    case NAME:
      return this.name;
    case RANKING:
      return this.ranking;
    case PROPS:
      return this.props;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}