toDashboardUIState method
Implementation
DashboardUIState toDashboardUIState() {
switch (this) {
case 'EXPANDED':
return DashboardUIState.expanded;
case 'COLLAPSED':
return DashboardUIState.collapsed;
}
throw Exception('$this is not known in enum DashboardUIState');
}