toValue static method

CustomThemeMode toValue(
  1. String key
)

Implementation

static CustomThemeMode toValue(String key) {
  if (key == light) {
    return CustomThemeMode.light;
  }
  return CustomThemeMode.dark;
}