toGroupByAttribute method

GroupByAttribute toGroupByAttribute()

Implementation

GroupByAttribute toGroupByAttribute() {
  switch (this) {
    case 'TARGET_ID':
      return GroupByAttribute.targetId;
    case 'REGION':
      return GroupByAttribute.region;
    case 'RESOURCE_TYPE':
      return GroupByAttribute.resourceType;
  }
  throw Exception('$this is not known in enum GroupByAttribute');
}