toCEType method
Implementation
CEType toCEType() {
switch (this) {
case 'MANAGED':
return CEType.managed;
case 'UNMANAGED':
return CEType.unmanaged;
}
throw Exception('$this is not known in enum CEType');
}
CEType toCEType() {
switch (this) {
case 'MANAGED':
return CEType.managed;
case 'UNMANAGED':
return CEType.unmanaged;
}
throw Exception('$this is not known in enum CEType');
}