toRoutingStrategyType method
Implementation
RoutingStrategyType toRoutingStrategyType() {
switch (this) {
case 'SIMPLE':
return RoutingStrategyType.simple;
case 'TERMINAL':
return RoutingStrategyType.terminal;
}
throw Exception('$this is not known in enum RoutingStrategyType');
}