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 HOST:
      return this.host;
    case GIT_INFO_SHA:
      return this.git_info_sha;
    case VERSION:
      return this.version;
    default:
      throw new ArgumentError("Field $fieldID doesn't exist!");
  }
}