toCEState method
Implementation
CEState toCEState() {
switch (this) {
case 'ENABLED':
return CEState.enabled;
case 'DISABLED':
return CEState.disabled;
}
throw Exception('$this is not known in enum CEState');
}
CEState toCEState() {
switch (this) {
case 'ENABLED':
return CEState.enabled;
case 'DISABLED':
return CEState.disabled;
}
throw Exception('$this is not known in enum CEState');
}