displayName property
String
get
displayName
Implementation
String get displayName {
switch (this) {
case ThemeName.dark:
return 'dark';
case ThemeName.light:
return 'light';
case ThemeName.lightDaltonized:
return 'light-daltonized';
case ThemeName.darkDaltonized:
return 'dark-daltonized';
case ThemeName.lightAnsi:
return 'light-ansi';
case ThemeName.darkAnsi:
return 'dark-ansi';
}
}