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 FAILED_PARTS:
      return this.failed_parts;
    case LATENCY_IN_US:
      return this.latency_in_us;
    case LATENCY_DETAIL_US:
      return this.latency_detail_us;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}