toConformancePackState method
Implementation
ConformancePackState toConformancePackState() {
switch (this) {
case 'CREATE_IN_PROGRESS':
return ConformancePackState.createInProgress;
case 'CREATE_COMPLETE':
return ConformancePackState.createComplete;
case 'CREATE_FAILED':
return ConformancePackState.createFailed;
case 'DELETE_IN_PROGRESS':
return ConformancePackState.deleteInProgress;
case 'DELETE_FAILED':
return ConformancePackState.deleteFailed;
}
throw Exception('$this is not known in enum ConformancePackState');
}