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