toCostCategoryStatus method
Implementation
CostCategoryStatus toCostCategoryStatus() {
switch (this) {
case 'PROCESSING':
return CostCategoryStatus.processing;
case 'APPLIED':
return CostCategoryStatus.applied;
}
throw Exception('$this is not known in enum CostCategoryStatus');
}