toCostCategoryStatusComponent method
Implementation
CostCategoryStatusComponent toCostCategoryStatusComponent() {
  switch (this) {
    case 'COST_EXPLORER':
      return CostCategoryStatusComponent.costExplorer;
  }
  throw Exception('$this is not known in enum CostCategoryStatusComponent');
}