toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DashboardUIState.expanded:
      return 'EXPANDED';
    case DashboardUIState.collapsed:
      return 'COLLAPSED';
  }
}