toUseCaseType method
Implementation
UseCaseType toUseCaseType() {
switch (this) {
case 'RULES_EVALUATION':
return UseCaseType.rulesEvaluation;
}
throw Exception('$this is not known in enum UseCaseType');
}
UseCaseType toUseCaseType() {
switch (this) {
case 'RULES_EVALUATION':
return UseCaseType.rulesEvaluation;
}
throw Exception('$this is not known in enum UseCaseType');
}